8000 Removed fuzzys in faq, installing and . (#491) · python/python-docs-fr@b785ba5 · GitHub
[go: up one dir, main page]

Skip to content

Commit b785ba5

Browse files
Seluj78JulienPalard
authored andcommitted
Removed fuzzys in faq, installing and . (#491)
1 parent 3e76cbe commit b785ba5

File tree

4 files changed

+43
-39
lines changed

4 files changed

+43
-39
lines changed

faq/design.po

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ msgstr ""
66
"Project-Id-Version: Python 3.6\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2018-11-29 16:06+0100\n"
9-
"PO-Revision-Date: 2018-11-23 15:22+0100\n"
10-
"Last-Translator: Julien Palard <julien@palard.fr>\n"
9+
"PO-Revision-Date: 2018-12-14 15:10+0100\n"
10+
"Last-Translator: Jules Lasne <jules.lasne@gmail.com>\n"
1111
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"
@@ -1026,16 +1026,15 @@ msgstr ""
10261026
"valeur, elle ne sera pas retrouvée; par exemple ::"
10271027

10281028
#: ../Doc/faq/design.rst:531
1029-
#, fuzzy
10301029
msgid ""
10311030
"would raise a :exc:`KeyError` exception because the id of the ``[1, 2]`` "
10321031
"used in the second line differs from that in the first line. In other "
10331032
"words, dictionary keys should be compared using ``==``, not using :keyword:"
10341033
"`is`."
10351034
msgstr ""
1036-
"cela lèverait une exception de type *KeyError* car l'ID de ``[1, 2]`` "
1037-
"utilisé dans la deuxième ligne diffère de celle de la première ligne. En "
1038-
"d'autres termes, les clés de dictionnaire doivent être comparées à l'aide du "
1035+
"cela lèverait une exception :exc:`KeyError` car l'ID de ``[1, 2]`` utilisé "
1036+
"dans la deuxième ligne diffère de celle de la première ligne. En d'autres "
1037+
"termes, les clés de dictionnaire doivent être comparées à l'aide du "
10391038
"comparateur ``==`` et non à l'aide du mot clé :keyword:`is`."
10401039

10411040
#: ../Doc/faq/design.rst:535
@@ -1089,13 +1088,23 @@ msgid ""
10891088
"dictionary (or other hash based structure), remain fixed while the object is "
10901089
"in the dictionary (or other structure). ::"
10911090
msgstr ""
1091+
"Il y a un truc pour contourner ceci si vous en avez besoin, mais utilisez-le "
1092+
"à vos risques et périls. Vous pouvez encapsuler une structure mutable à "
1093+
"l'intérieur d'une instance de classe qui a à la fois une méthode :meth:"
1094+
"`__eq__` et :meth:`__hash__`. Vous devez ensuite vous assurer que la valeur "
1095+
"de hachage pour tous ces objets *wrapper* qui résident dans un dictionnaire "
1096+
"(ou une autre structure basée sur le hachage), restent fixes pendant que "
1097+
"l'objet est dans le dictionnaire (ou une autre structure). ::"
10921098

10931099
#: ../Doc/faq/design.rst:574
10941100
msgid ""
10951101
"Note that the hash computation is complicated by the possibility that some "
10961102
"members of the list may be unhashable and also by the possibility of "
10971103
"arithmetic overflow."
10981104
msgstr ""
1105+
"Notez que le calcul de hachage peut être compliqué car il est possible que certains "
1106+
"membres de la liste peuvent être impossible à hacher et aussi par la "
1107+
"possibilité de débordement arithmétique."
10991108

11001109
#: ../Doc/faq/design.rst:578
11011110
msgid ""

glossary.po

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ msgid ""
55
msgstr ""
66
"Project-Id-Version: Python 3.6\n"
77
"Report-Msgid-Bugs-To: \n"
8-
"POT-Creation-Date: 2018-12-12 22:58+0100\n"
9-
"PO-Revision-Date: 2018-09-29 14:47+0200\n"
10-
"Last-Translator: Julien Palard <julien@palard.fr>\n"
8+
"POT-Creation-Date: 2018-11-29 16:06+0100\n"
9+
"PO-Revision-Date: 2018-12-14 15:07+0100\n"
10+
"Last-Translator: Jules Lasne <jules.lasne@gmail.com>\n"
1111
"Language-Team: FRENCH <traductions@lists.afpy.org>\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.2\n"
16+
"X-Generator: Poedit 2.2\n"
1717

1818
#: ../Doc/glossary.rst:5
1919
msgid "Glossary"
@@ -226,7 +226,6 @@ msgstr ""
226226
"de valeurs utilisables dans une boucle :keyword:`async for`."
227227

228228
#: ../Doc/glossary.rst:98
229-
#, fuzzy
230229
msgid ""
231230
"Usually refers to an asynchronous generator function, but may refer to an "
232231
"*asynchronous generator iterator* in some contexts. In cases where the "
@@ -254,7 +253,6 @@ msgid "An object created by a :term:`asynchronous generator` function."
254253
msgstr "Objet créé par une fonction :term:`asynchronous generator`."
255254

256255
#: ../Doc/glossary.rst:109
257-
#, fuzzy
258256
msgid ""
259257
"This is an :term:`asynchronous iterator` which when called using the :meth:"
260258
"`__anext__` method returns an awaitable object which will execute that the "
@@ -383,7 +381,7 @@ msgstr ""
383381

384382
#: ../Doc/glossary.rst:156
385383
msgid "bytes-like object"
386-
msgstr "Objet bytes-compatible"
384+
msgstr "objet bytes-compatible"
387385

388386
#: ../Doc/glossary.rst:158
389387
msgid ""
@@ -481,7 +479,6 @@ msgid "coercion"
481479
msgstr "coercition"
482480

483481
#: ../Doc/glossary.rst:198
484-
#, fuzzy
485482
msgid ""
486483
"The implicit conversion of an instance of one type to another during an "
487484
"operation which involves two arguments of the same type. For example, "
@@ -496,11 +493,12 @@ msgstr ""
496493
"opération dont les deux opérandes doivent être de même type. Par exemple "
497494
"``int(3.15)`` convertit explicitement le nombre à virgule flottante en "
498495
"nombre entier ``3``. Mais dans l'opération ``3 + 4.5``, les deux opérandes "
499-
"sont d'un type différent, alors qu'elles doivent avoir le même type pour "
500-
"être additionnées (sinon une exception ``TypeError`` serait levée). Sans "
501-
"coercition, toutes les opérandes, même de types compatibles, devraient être "
502-
"converties (on parle aussi de *cast*) explicitement par le développeur, par "
503-
"exemple : ``float(3) + 4.5`` au lieu du simple ``3 + 4.5``."
496+
"sont d'un type différent (Un entier et un nombre à virgule flottante), alors "
497+
"qu'elles doivent avoir le même type pour être additionnées (sinon une "
498+
"exception :exc:`TypeError` serait levée). Sans coercition, toutes les "
499+
"opérandes, même de types compatibles, devraient être converties (on parle "
500+
"aussi de *cast*) explicitement par le développeur, par exemple : ``float(3) "
501+
"+ 4.5`` au lieu du simple ``3 + 4.5``."
504502

505503
#: ../Doc/glossary.rst:206
506504
msgid "complex number"
@@ -943,19 +941,18 @@ msgstr "annotation de fonction"
943941

944942
#: ../Doc/glossary.rst:389
945943
msgid "An :term:`annotation` of a function parameter or return value."
946-
msgstr ":term:`annotation` d'un paramètre de fonction ou valeur de retour"
944+
msgstr ":term:`annotation` d'un paramètre de fonction ou valeur de retour."
947945

948946
#: ../Doc/glossary.rst:391
949-
#, fuzzy
950947
msgid ""
951948
"Function annotations are usually used for :term:`type hints <type hint>`: "
952949
"for example, this function is expected to take two :class:`int` arguments "
953950
"and is also expected to have an :class:`int` return value::"
954951
msgstr ""
955952
"Les annotations de fonctions sont généralement utilisées pour des :term:"
956-< 10000 div class="diff-text-inner">"`indications de types <type hint>` : par exemple, cette fonction devrait "
953+
"`indications de types <type hint>` : par exemple, cette fonction devrait "
957954
"prendre deux arguments :class:`int` et devrait également avoir une valeur de "
958-
"retour de type :class:`int` ::"
955+
"retour de type :class:`int` ::"
959956

960957
#: ../Doc/glossary.rst:399
961958
msgid "Function annotation syntax is explained in section :ref:`function`."
@@ -1590,7 +1587,7 @@ msgstr ""
15901587

15911588
#: ../Doc/glossary.rst:661
15921589
msgid "mapping"
1593-
msgstr "Tableau de correspondances"
1590+
msgstr "tableau de correspondances"
15941591

15951592
#: ../Doc/glossary.rst:663
15961593
msgid ""

installing/index.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ msgstr ""
66
"Project-Id-Version: Python 3.6\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2018-11-29 16:06+0100\n"
9-
"PO-Revision-Date: 2018-11-13 09:45+0100\n"
10-
"Last-Translator: Julien Palard <julien@palard.fr>\n"
9+
"PO-Revision-Date: 2018-12-14 15:02+0100\n"
10+
"Last-Translator: Jules Lasne <jules.lasne@gmail.com>\n"
1111
"Language: fr\n"
1212
"MIME-Version: 1.0\n"
1313
"Content-Type: text/plain; charset=UTF-8\n"
1414
"Content-Transfer-Encoding: 8bit\n"
15+
"Language-Team: \n"
16+
"X-Generator: Poedit 2.2\n"
1517

1618
#: ../Doc/installing/index.rst:7
1719
msgid "Installing Python Modules"
@@ -123,7 +125,6 @@ msgstr ""
123125
"paquets sous licence ouverte disponibles pour tous les utilisateurs Python."
124126

125127
#: ../Doc/installing/index.rst:50
126-
#, fuzzy
127128
msgid ""
128129
"the `Python Packaging Authority <https://www.pypa.io/>`__ is the group of "
129130
"developers and documentation authors responsible for the maintenance and "

sphinx.po

Lines changed: 9 additions & 12 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: 2018-11-29 16:06+0100\n"
9-
"PO-Revision-Date: 2018-07-03 20:52+0200\n"
10-
"Last-Translator: \n"
9+
"PO-Revision-Date: 2018-12-14 15:01+0100\n"
10+
"Last-Translator: Jules Lasne <jules.lasne@gmail.com>\n"
1111
"Language-Team: FRENCH <traductions@lists.afpy.org>\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.2\n"
16+
"X-Generator: Poedit 2.2\n"
1717

1818
#: ../Doc/tools/templates/customsourcelink.html:3
1919
msgid "This Page"
@@ -86,7 +86,7 @@ msgstr "Installation et utilisation de Python"
8686

8787
#: ../Doc/tools/templates/indexcontent.html:22
8888
msgid "how to use Python on different platforms"
89-
msgstr "Utilisation de Python sur différentes plateformes"
89+
msgstr "utilisation de Python sur différentes plateformes"
9090

9191
#: ../Doc/tools/templates/indexcontent.html:23
9292
msgid "Python HOWTOs"
@@ -102,7 +102,7 @@ msgstr "Installation de modules Python"
102102

103103
#: ../Doc/tools/templates/indexcontent.html:27
104104
msgid "installing from the Python Package Index &amp; other sources"
105-
msgstr "Installation depuis le *Python Package Index* ou d'autres sources"
105+
msgstr "installation depuis le *Python Package Index* ou d'autres sources"
106106

107107
#: ../Doc/tools/templates/indexcontent.html:28
108108
msgid "Distributing Python Modules"
@@ -162,7 +162,7 @@ msgstr "Glossaire"
162162

163163
#: ../Doc/tools/templates/indexcontent.html:47
164164
msgid "the most important terms explained"
165-
msgstr "Explication des mots les plus importants"
165+
msgstr "explication des mots les plus importants"
166166

167167
#: ../Doc/tools/templates/indexcontent.html:49
168168
msgid "Search page"
@@ -210,18 +210,16 @@ msgid "Download these documents"
210210
msgstr "Téléchargement de ces documentations"
211211

212212
#: ../Doc/tools/templates/indexsidebar.html:3
213-
#, fuzzy
214213
msgid "Docs by version"
215-
msgstr "Docs des autres versions"
214+
msgstr "Docs par version"
216215

217216
#: ../Doc/tools/templates/indexsidebar.html:5
218217
msgid "Python 3.8 (in development)"
219218
msgstr "Python 3.8 (en développement)"
220219

221220
#: ../Doc/tools/templates/indexsidebar.html:6
222-
#, fuzzy
223221
msgid "Python 3.7 (stable)"
224-
msgstr "Python 3.6 (stable)"
222+
msgstr "Python 3.7 (stable)"
225223

226224
#: ../Doc/tools/templates/indexsidebar.html:7
227225
msgid "Python 3.6 (stable)"
@@ -236,9 +234,8 @@ msgid "Python 2.7 (stable)"
236234
msgstr "Python 2.7 (stable)"
237235

238236
#: ../Doc/tools/templates/indexsidebar.html:10
239-
#, fuzzy
240237
msgid "All versions"
241-
msgstr "Anciennes versions"
238+
msgstr "Toutes les versions"
242239

243240
#: ../Doc/tools/templates/indexsidebar.html:13
244241
msgid "Other resources"

0 commit comments

Comments
 (0)
0