Skip to content

Commit 4a74866

Browse files
drNymbusSeluj78christopheNanawecx
committed
venv.po, unicode.po, datastructures.po complete (python#917)
* fin de traduction du fichier tutorial/datastructures.po * fixed a fuzzy in howto/unicode.po * fin de traduction de tutorial/venv.po, terme "shell" non traduit * fuzzy in reference/datamodel.po removed, fin de traduction pour reference/datamodel.po * fin de traduction de reference/expressions.po * Update reference/expressions.po Co-Authored-By: Jules Lasne (jlasne) <[email protected]> * Update tutorial/datastructures.po Co-Authored-By: Jules Lasne (jlasne) <[email protected]> * Update tutorial/datastructures.po Co-Authored-By: Jules Lasne (jlasne) <[email protected]> * Update tutorial/datastructures.po Co-Authored-By: Jules Lasne (jlasne) <[email protected]> * Update tutorial/datastructures.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update tutorial/datastructures.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update tutorial/venv.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update tutorial/venv.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update tutorial/venv.po Co-Authored-By: Antoine <[email protected]> * Update tutorial/venv.po Co-Authored-By: Antoine <[email protected]> * Update reference/expressions.po Co-Authored-By: Antoine <[email protected]> * Update reference/expressions.po Co-Authored-By: Antoine <[email protected]> * fixed some unbreakable space * encore... * auto-indent reference/expressions.po * porwrap ran on reference/expressions.po * non-breakable spaces removed * T_T * Update tutorial/datastructures.po Co-Authored-By: Antoine <[email protected]> * "Revert" unchanged file. Co-authored-by: Jules Lasne (jlasne) <[email protected]> Co-authored-by: Christophe Nanteuil <[email protected]> Co-authored-by: Antoine <[email protected]>
1 parent 0bbafa1 commit 4a74866

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

howto/unicode.po

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ msgstr ""
66
"Project-Id-Version: Python 3\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2019-09-04 11:33+0200\n"
9-
"PO-Revision-Date: 2019-06-08 10:54+0200\n"
10-
"Last-Translator: Mathieu Dupuy <deronnax@gmail.com>\n"
9+
"PO-Revision-Date: 2019-10-31 12:03+0100\n"
10+
"Last-Translator: Melançon Victor <victor.melancon0@gmail.com>\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.2.1\n"
16+
"X-Generator: Poedit 2.2.4\n"
1717

1818
#: ../Doc/howto/unicode.rst:5
1919
msgid "Unicode HOWTO"
@@ -345,16 +345,14 @@ msgstr ""
345345
"développement de l’Unicode est également disponible sur le site."
346346

347347
#: ../Doc/howto/unicode.rst:164
348-
#, fuzzy
349348
msgid ""
350349
"On the Computerphile Youtube channel, Tom Scott briefly `discusses the "
351350
"history of Unicode and UTF-8 <https://www.youtube.com/watch?v=MijmeoH9LT4>`_ "
352351
"(9 minutes 36 seconds)."
353352
msgstr ""
354353
"Sur la chaîne Youtube *Computerphile*, Tom Scott parle brièvement de "
355-
"l'histoire d'Unicode et d'UTF-8, en anglais : `Characters, Symbols and the "
356-
"Unicode Miracle <https://www.youtube.com/watch?v=MijmeoH9LT4>` (9 minutes et "
357-
"36 secondes)."
354+
"`l’histoire d’Unicode et d’UTF-8 <https://www.youtube.com/watch?"
355+
"v=MijmeoH9LT4>`_ (9 minutes et 36 secondes)."
358356

359357
#: ../Doc/howto/unicode.rst:168
360358
msgid ""

reference/expressions.po

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2203,6 +2203,11 @@ msgid ""
22032203
"equal to themselves. That lets them bypass equality tests for identical "
22042204
"objects to improve performance and to maintain their internal invariants."
22052205
msgstr ""
2206+
"Les séquences se comparent lexicographiquement en comparant les éléments "
2207+
"correspondants. Les conteneurs natifs supposent généralement que les objets "
2208+
"identiques sont égaux à eux-mêmes. Cela leur permet d'économiser les tests "
2209+
"d’égalité pour des objets identiques afin d’améliorer les performances et de "
2210+
"conserver leurs invariants internes."
22062211

22072212
#: ../Doc/reference/expressions.rst:1452
22082213
msgid ""

tutorial/datastructures.po

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgstr ""
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.2\n"
16+
"X-Generator: Poedit 2.2.4\n"
1717

1818
#: ../Doc/tutorial/datastructures.rst:5
1919
msgid "Data Structures"
@@ -158,6 +158,12 @@ msgid ""
158158
"types. Also, there are some types that don't have a defined ordering "
159159
"relation. For example, ``3+4j < 5+7j`` isn't a valid comparison."
160160
msgstr ""
161+
"Une autre chose que vous remarquerez peut-être est que toutes les données ne "
162+
"peuvent pas être triées ou comparées. Par exemple, ``[None, 'hello', 10]`` "
163+
"ne sera pas ordonné parce que les entiers ne peuvent pas être comparés aux "
164+
"chaînes de caractères et *None* ne peut pas être comparé à d'autres types. "
165+
"En outre, il existe certains types qui n'ont pas de relation d'ordre "
166+
"définie. Par exemple, ``3+4j < 5+7j`` n'est pas une comparaison valide."
161167

162168
#: ../Doc/tutorial/datastructures.rst:139
163169
msgid "Using Lists as Stacks"
@@ -643,7 +649,7 @@ msgid ""
643649
msgstr ""
644650
"Lorsque vous itérez sur une séquence, la position et la valeur "
645651
"correspondante peuvent être récupérées en même temps en utilisant la "
646-
"fonction :func:`enumerate`. ::"
652+
"fonction :func:`enumerate`. ::"
647653

648654
#: ../Doc/tutorial/datastructures.rst:589
649655
msgid ""

0 commit comments

Comments
 (0)