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

Skip to content

Commit 211f724

Browse files
Seluj78JulienPalard
authored andcommitted
Fixed fuzzys in library/stdtypes.po (#595)
1 parent fad39b0 commit 211f724

File tree

1 file changed

+13
-19
lines changed

1 file changed

+13
-19
lines changed

library/stdtypes.po

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ msgstr ""
66
"Project-Id-Version: Python 3.6\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2019-03-20 09:03+0100\n"
9-
"PO-Revision-Date: 2018-12-24 14:55+0100\n"
10-
"Last-Translator: Julien Palard <[email protected]>\n"
9+
"PO-Revision-Date: 2019-02-27 12:19+0100\n"
10+
"Last-Translator: Jules Lasne <[email protected]>\n"
1111
"Language-Team: FRENCH <[email protected]>\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"
1414
"Content-Type: text/plain; charset=UTF-8\n"
1515
"Content-Transfer-Encoding: 8bit\n"
16-
"X-Generator: Poedit 2.0.6\n"
16+
"X-Generator: Poedit 2.2.1\n"
1717

1818
#: ../Doc/library/stdtypes.rst:8
1919
msgid "Built-in Types"
@@ -103,7 +103,7 @@ msgid ""
103103
"empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, "
104104
"``range(0)``"
105105
msgstr ""
106-
"Les chaînes et collections vides : ``''``, ``()``, ``[]``, ``{}``, "
106+
"les chaînes et collections vides : ``''``, ``()``, ``[]``, ``{}``, "
107107
"``set()``, ``range(0)``"
108108

109109
#: ../Doc/library/stdtypes.rst:69
@@ -119,10 +119,9 @@ msgstr ""
119119
"``or`` et ``and`` renvoient toujours l'une de leurs opérandes.)"
120120

121121
#: ../Doc/library/stdtypes.rst:78
122-
#, fuzzy
123122
msgid "Boolean Operations --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not`"
124123
msgstr ""
125-
"Opérations booléennes --- :keyword:`and`, :keyword:`or`, :keyword:`not`"
124+
"Opérations booléennes --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not`"
126125

127126
#: ../Doc/library/stdtypes.rst:82
128127
msgid "These are the Boolean operations, ordered by ascending priority:"
@@ -5223,7 +5222,7 @@ msgstr ""
52235222
#: ../Doc/library/stdtypes.rst:3531
52245223
msgid "memoryviews can now be indexed with tuple of integers."
52255224
msgstr ""
5226-
"Les *memoryviews* peut maintenant être indexées par un tuple d'entiers."
5225+
"les *memoryviews* peut maintenant être indexées par un n-uplet d'entiers."
52275226

52285227
#: ../Doc/library/stdtypes.rst:3534
52295228
msgid ":class:`memoryview` has several methods:"
@@ -5404,7 +5403,6 @@ msgid "The underlying object of the memoryview::"
54045403
msgstr "L'objet sous-jacent de la *memoryview* : ::"
54055404

54065405
#: ../Doc/library/stdtypes.rst:3768
5407-
#, fuzzy
54085406
msgid ""
54095407
"``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the "
54105408
"amount of space in bytes that the array would use in a contiguous "
@@ -5439,7 +5437,7 @@ msgid ""
54395437
"format ``'B'`` is now handled according to the struct module syntax. This "
54405438
"means that ``memoryview(b'abc')[0] == b'abc'[0] == 97``."
54415439
msgstr ""
5442-
"Le format ``'B'`` est maintenant traité selon la syntaxe du module *struct*. "
5440+
"le format ``'B'`` est maintenant traité selon la syntaxe du module *struct*. "
54435441
"Cela signifie que ``memoryview(b'abc')[0] == b'abc'[0] == 97``."
54445442

54455443
#: ../Doc/library/stdtypes.rst:3819
@@ -6147,7 +6145,6 @@ msgstr ""
61476145
"insérées à la fin. ::"
61486146

61496147
#: ../Doc/library/stdtypes.rst:4289
6150-
#, fuzzy
61516148
msgid ""
61526149
"Dictionary order is guaranteed to be insertion order. This behavior was an "
61536150
"implementation detail of CPython from 3.6."
@@ -6269,22 +6266,21 @@ msgid ""
62696266
"before the statement body is executed and exited when the statement ends:"
62706267
msgstr ""
62716268
"L'instruction :keyword:`with` permet l'existence de contextes définis à "
6272-
"l'exécution par des gestionnaires de contextes. C'est implémenté via une "
6269+
"l'exécution par des gestionnaires de contextes. C'est implémenté via une "
62736270
"paire de méthodes permettant de définir un contexte, à l'exécution, qui est "
62746271
"entré avant l'exécution du corps de l'instruction, et qui est quitté lorsque "
62756272
"l'instruction se termine :"
62766273

62776274
#: ../Doc/library/stdtypes.rst:4394
6278-
#, fuzzy
62796275
msgid ""
62806276
"Enter the runtime context and return either this object or another object "
62816277
"related to the runtime context. The value returned by this method is bound "
62826278
"to the identifier in the :keyword:`!as` clause of :keyword:`with` statements "
62836279
"using this context manager."
62846280
msgstr ""
62856281
"Entre dans le contexte à l'exécution, soit se renvoyant lui-même, soit en "
6286-
"renvoyant un autre objet en lien avec ce contexte. La valeur renvoyée par "
6287-
"cette méthode est liée à l'identifiant donné au :keyword:`as` de "
6282+
"renvoyant un autre objet en lien avec ce contexte. La valeur renvoyée par "
6283+
"cette méthode est liée à l'identifiant donné au :keyword:`!as` de "
62886284
"l'instruction :keyword:`with` utilisant ce gestionnaire de contexte."
62896285

62906286
#: ../Doc/library/stdtypes.rst:4399
@@ -6299,7 +6295,6 @@ msgstr ""
62996295
"keyword:`with`."
63006296

63016297
#: ../Doc/library/stdtypes.rst:4403
6302-
#, fuzzy
63036298
msgid ""
63046299
"An example of a context manager that returns a related object is the one "
63056300
"returned by :func:`decimal.localcontext`. These managers set the active "
@@ -6312,7 +6307,7 @@ msgstr ""
63126307
"renvoyé par :func:`decimal.localcontext`. Ces gestionnaires remplacent le "
63136308
"contexte décimal courant par une copie de l'original, copie qui est "
63146309
"renvoyée. Ça permet de changer le contexte courant dans le corps du :keyword:"
6315-
"`with` sans affecter le code en dehors de l'instruction :keyword:`with`."
6310+
"`with` sans affecter le code en dehors de l'instruction :keyword:`!with`."
63166311

63176312
#: ../Doc/library/stdtypes.rst:4413
63186313
msgid ""
@@ -6329,7 +6324,6 @@ msgstr ""
63296324
"trois arguments valent ``None``."
63306325

63316326
#: ../Doc/library/stdtypes.rst:4418
6332-
#, fuzzy
63336327
msgid ""
63346328
"Returning a true value from this method will cause the :keyword:`with` "
63356329
"statement to suppress the exception and continue execution with the "
@@ -6341,10 +6335,10 @@ msgid ""
63416335
msgstr ""
63426336
"L'instruction :keyword:`with` inhibera l'exception si cette méthode renvoie "
63436337
"une valeur vraie, l'exécution continuera ainsi à l'instruction suivant "
6344-
"immédiatement l'instruction :keyword:`with`. Sinon, l'exception continuera "
6338+
"immédiatement l'instruction :keyword:`!with`. Sinon, l'exception continuera "
63456339
"de se propager après la fin de cette méthode. Les exceptions se produisant "
63466340
"pendant l'exécution de cette méthode remplaceront toute exception qui s'est "
6347-
"produite dans le corps du :keyword:`with`."
6341+
"produite dans le corps du :keyword:`!with`."
63486342

63496343
#: ../Doc/library/stdtypes.rst:4425
63506344
msgid ""

0 commit comments

Comments
 (0)