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

Skip to content

Commit 61533a9

Browse files
committed
tutorial/ → 100%
1 parent 55ca7a4 commit 61533a9

File tree

8 files changed

+72
-43
lines changed

8 files changed

+72
-43
lines changed

tutorial/classes.po

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.6\n"
109
"Report-Msgid-Bugs-To: \n"
1110
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
12-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team: LANGUAGE <[email protected]>\n"
15-
"Language: \n"
11+
"PO-Revision-Date: 2017-05-16 22:33+0200\n"
12+
"Language: fr\n"
1613
"MIME-Version: 1.0\n"
1714
"Content-Type: text/plain; charset=UTF-8\n"
1815
"Content-Transfer-Encoding: 8bit\n"
16+
"Last-Translator: Julien Palard <[email protected]>\n"
17+
"Language-Team: \n"
18+
"X-Generator: Poedit 1.8.11\n"
1919

2020
#: ../Doc/tutorial/classes.rst:5
2121
msgid "Classes"
@@ -693,7 +693,6 @@ msgstr ""
693693
"même si l'argument n'est pas utilisé..."
694694

695695
#: ../Doc/tutorial/classes.rst:376
696-
#, fuzzy
697696
msgid ""
698697
"Actually, you may have guessed the answer: the special thing about methods "
699698
"is that the instance object is passed as the first argument of the "
@@ -705,11 +704,11 @@ msgid ""
705704
msgstr ""
706705
"En fait, vous aurez peut-être deviné la réponse : la particularité des "
707706
"méthodes est que l'objet est passé comme premier argument de la fonction. "
708-
"Dans notre exemple, l'appel ``x.f ()`` est exactement équivalent à "
709-
"``MaClasse.f(x)``. En général, appeler une méthode avec une liste "
710-
"d'arguments *n* est équivalent à appeler la fonction correspondante avec "
711-
"cette liste d'arguments modulo l'insertion de l'objet de la méthode avant le "
712-
"premier argument."
707+
"Dans notre exemple, l'appel ``x.f()`` est exactement équivalent à ``MyClass."
708+
"f(x)``. En général, appeler une méthode avec une liste de *n* arguments est "
709+
"équivalent à appeler la fonction correspondante avec cette une d'arguments "
710+
"crée en ajoutant l'instance de l'objet de la méthode avant le premier "
711+
"argument."
713712

714713
#: ../Doc/tutorial/classes.rst:383
715714
msgid ""

tutorial/controlflow.po

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
11-
"PO-Revision-Date: 2016-11-19 16:39+0100\n"
11+
"PO-Revision-Date: 2017-05-16 22:31+0200\n"
1212
"MIME-Version: 1.0\n"
1313
"Content-Type: text/plain; charset=UTF-8\n"
1414
"Content-Transfer-Encoding: 8bit\n"
15+
"Last-Translator: Julien Palard <[email protected]>\n"
16+
"Language-Team: \n"
17+
"Language: fr\n"
18+
"X-Generator: Poedit 1.8.11\n"
1519

1620
#: ../Doc/tutorial/controlflow.rst:5
1721
msgid "More Control Flow Tools"
@@ -609,6 +613,8 @@ msgid ""
609613
"Note that the order in which the keyword arguments are printed is guaranteed "
610614
"to match the order in which they were provided in the function call."
611615
msgstr ""
616+
"Note: Il est garanti que l'ordre d'affichage des arguments est le même que "
617+
"l'ordre dans lesquels ils sont fournis lors de l'appel à la fonction."
612618

613619
#: ../Doc/tutorial/controlflow.rst:526
614620
msgid "Arbitrary Argument Lists"

tutorial/datastructures.po

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.6\n"
109
"Report-Msgid-Bugs-To: \n"
1110
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
12-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team: LANGUAGE <[email protected]>\n"
15-
"Language: \n"
11+
"PO-Revision-Date: 2017-05-16 22:29+0200\n"
12+
"Language: fr\n"
1613
"MIME-Version: 1.0\n"
1714
"Content-Type: text/plain; charset=UTF-8\n"
1815
"Content-Transfer-Encoding: 8bit\n"
16+
"Last-Translator: Julien Palard <[email protected]>\n"
17+
"Language-Team: \n"
18+
"X-Generator: Poedit 1.8.11\n"
1919

2020
#: ../Doc/tutorial/datastructures.rst:5
2121
msgid "Data Structures"
@@ -48,13 +48,12 @@ msgstr ""
4848
"Ajoute un élément à la fin de la liste. Equivalent à ``a[len(a):] = [x]``."
4949

5050
#: ../Doc/tutorial/datastructures.rst:28
51-
#, fuzzy
5251
msgid ""
5352
"Extend the list by appending all the items from the iterable. Equivalent to "
5453
"``a[len(a):] = iterable``."
5554
msgstr ""
56-
"Étend la liste en y ajoutant tous les éléments de la liste fournie."
57-
"Équivalent à ``a[len(a):] = L``."
55+
"Étend la liste en y ajoutant tous les éléments de l'itérable. Équivalent à "
56+
"``a[len(a):] = iterable``."
5857

5958
#: ../Doc/tutorial/datastructures.rst:35
6059
msgid ""
@@ -96,13 +95,13 @@ msgid "Remove all items from the list. Equivalent to ``del a[:]``."
9695
msgstr "Supprime tous les éléments de la liste, équivalent à ``del a[:]``."
9796

9897
#: ../Doc/tutorial/datastructures.rst:66
99-
#, fuzzy
10098
msgid ""
10199
"Return zero-based index in the list of the first item whose value is *x*. "
102100
"Raises a :exc:`ValueError` if there is no such item."
103101
msgstr ""
104-
"Retourne la position du premier élément de la liste ayant la valeur *x*. Une "
105-
"exception est levée s'il n'existe aucun élément avec cette valeur."
102+
"Renvoie la position du premier élément de la liste ayant la valeur *x* (en "
103+
"commençant par zéro). Une exception :exc:`ValueError` est levée si aucun "
104+
"élément n'est trouvé."
106105

107106
#: ../Doc/tutorial/datastructures.rst:69
108107
msgid ""
@@ -111,6 +110,10 @@ msgid ""
111110
"list. The returned index is computed relative to the beginning of the full "
112111
"sequence rather than the *start* argument."
113112
msgstr ""
113+
"Les arguments optionnels *start* et *end* sont interprétés de la même "
114+
"manière que dans la notation des tranches, et sont utilisés pour limiter la "
115+
"recherche à une sous-séquence particulière. L'index renvoyé est calculé "
116+
"relativement au début de la séquence complète, et non relativement à *start*."
114117

115118
#: ../Doc/tutorial/datastructures.rst:78
116119
msgid "Return the number of times *x* appears in the list."

tutorial/errors.po

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
11-
"PO-Revision-Date: 2016-11-19 16:30+0100\n"
11+
"PO-Revision-Date: 2017-05-16 22:24+0200\n"
1212
"MIME-Version: 1.0\n"
1313
"Content-Type: text/plain; charset=UTF-8\n"
1414
"Content-Transfer-Encoding: 8bit\n"
15+
"Last-Translator: Julien Palard <[email protected]>\n"
16+
"Language-Team: \n"
17+
"Language: fr\n"
18+
"X-Generator: Poedit 1.8.11\n"
1519

1620
#: ../Doc/tutorial/errors.rst:5
1721
msgid "Errors and Exceptions"
@@ -329,7 +333,6 @@ msgstr ""
329333
"exception spécifique. Par exemple : ::"
330334

331335
#: ../Doc/tutorial/errors.rst:247
332-
#, fuzzy
333336
msgid ""
334337
"The sole argument to :keyword:`raise` indicates the exception to be raised. "
335338
"This must be either an exception instance or an exception class (a class "
@@ -339,7 +342,8 @@ msgid ""
339342
msgstr ""
340343
"Le seul argument à :keyword:`raise` indique l'exception à déclencher. Cela "
341344
"peut être soit une instance d'exception, soit une classe d'exception (une "
342-
"classe dérivée de :class:`Exception`)."
345+
"classe dérivée de :class:`Exception`). Si une classe est donnée, elle sera "
346+
"implicitement instanciée via l'appel de son constructeur, sans arguments : ::"
343347

344348
#: ../Doc/tutorial/errors.rst:254
345349
msgid ""

tutorial/interpreter.po

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
11-
"PO-Revision-Date: 2016-11-19 16:23+0100\n"
11+
"PO-Revision-Date: 2017-05-16 22:23+0200\n"
1212
"MIME-Version: 1.0\n"
1313
"Content-Type: text/plain; charset=UTF-8\n"
1414
"Content-Transfer-Encoding: 8bit\n"
15+
"Last-Translator: Julien Palard <[email protected]>\n"
16+
"Language-Team: \n"
17+
"Language: fr\n"
18+
"X-Generator: Poedit 1.8.11\n"
1519

1620
#: ../Doc/tutorial/interpreter.rst:5
1721
msgid "Using the Python Interpreter"
@@ -245,23 +249,31 @@ msgid ""
245249
"To declare an encoding other than the default one, a special comment line "
246250
"should be added as the *first* line of the file. The syntax is as follows::"
247251
msgstr ""
252+
"Pour annoncer un encodage différent de l'encodage par défaut, une ligne de "
253+
"commentaire particulière doit être ajoutée à la *première* ligne du "
254+
"fichier. Sa syntaxe est la suivante : ::"
248255

249256
#: ../Doc/tutorial/interpreter.rst:146
250257
msgid "where *encoding* is one of the valid :mod:`codecs` supported by Python."
251-
msgstr ""
258+
msgstr "où *encoding* est un des :mod:`codecs` supporté par Python."
252259

253260
#: ../Doc/tutorial/interpreter.rst:148
254261
msgid ""
255262
"For example, to declare that Windows-1252 encoding is to be used, the first "
256263
"line of your source code file should be::"
257264
msgstr ""
265+
"Par example, pour déclarer un encodage *Windows-1252*, la première ligne de "
266+
"votre code source doit être : ::"
258267

259268
#: ../Doc/tutorial/interpreter.rst:153
260269
msgid ""
261270
"One exception to the *first line* rule is when the source code starts with "
262271
"a :ref:`UNIX \"shebang\" line <tut-scripts>`. In this case, the encoding "
263272
"declaration should be added as the second line of the file. For example::"
264273
msgstr ""
274+
"Une exception à la règle *première ligne* est lorsque la première ligne est "
275+
"un :ref:`shebang UNIX <tut-scripts>`. Dans ce cas, la déclaration de "
276+
"l'encodage doit être placé sur la seconde ligne du fichier.. Par exemple : ::"
265277

266278
#: ../Doc/tutorial/interpreter.rst:161
267279
msgid "Footnotes"

tutorial/introduction.po

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
11-
"PO-Revision-Date: 2016-11-19 16:09+0100\n"
11+
"PO-Revision-Date: 2017-05-16 22:20+0200\n"
1212
"MIME-Version: 1.0\n"
1313
"Content-Type: text/plain; charset=UTF-8\n"
1414
"Content-Transfer-Encoding: 8bit\n"
15+
"Last-Translator: Julien Palard <[email protected]>\n"
16+
"Language-Team: \n"
17+
"Language: fr\n"
18+
"X-Generator: Poedit 1.8.11\n"
1519

1620
#: ../Doc/tutorial/introduction.rst:5
1721
msgid "An Informal Introduction to Python"
@@ -443,14 +447,12 @@ msgid ":ref:`old-string-formatting`"
443447
msgstr ":ref:`old-string-formatting`"
444448

445449
#: ../Doc/tutorial/introduction.rst:362
446-
#, fuzzy
447450
msgid ""
448451
"The old formatting operations invoked when strings are the left operand of "
449452
"the ``%`` operator are described in more detail here."
450453
msgstr ""
451-
"Les anciennes opérations de formatage appelées lorsque les chaînes de "
452-
"caractères et les chaînes Unicode sont les opérandes placés à gauche de "
453-
"l'opérateur ``%`` sont décrites plus en détail ici."
454+
"Les anciennes méthodes de mise en forme appelées lorsque les chaînes de "
455+
"caractères sont à gauche d'un opérateur ``%`` sont décrites en détail ici."
454456

455457
#: ../Doc/tutorial/introduction.rst:369
456458
msgid "Lists"

tutorial/modules.po

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
11-
"PO-Revision-Date: 2016-11-19 15:54+0100\n"
11+
"PO-Revision-Date: 2017-05-16 22:18+0200\n"
1212
"MIME-Version: 1.0\n"
1313
"Content-Type: text/plain; charset=UTF-8\n"
1414
"Content-Transfer-Encoding: 8bit\n"
15+
"Last-Translator: Julien Palard <[email protected]>\n"
16+
"Language-Team: \n"
17+
"Language: fr\n"
18+
"X-Generator: Poedit 1.8.11\n"
1519

1620
#: ../Doc/tutorial/modules.rst:5
1721
msgid "Modules"
@@ -726,15 +730,15 @@ msgstr ""
726730
"lorsque ``__all__`` est défini.)"
727731

728732
#: ../Doc/tutorial/modules.rst:503
729-
#, fuzzy
730733
msgid ""
731734
"Although certain modules are designed to export only names that follow "
732735
"certain patterns when you use ``import *``, it is still considered bad "
733736
"practice in production code."
734737
msgstr ""
735738
"Bien que certains modules ont été pensés pour n'exporter que les noms "
736739
"respectant une certaine structure lorsque ``import *`` est utilisé, ``import "
737-
"*`` reste considéré comme une mauvaise pratique."
740+
"*`` reste considéré comme une mauvaise pratique dans du code à destination "
741+
"d'un environnement de production.Q"
738742

739743
#: ../Doc/tutorial/modules.rst:507
740744
msgid ""

tutorial/stdlib2.po

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,23 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.6\n"
109
"Report-Msgid-Bugs-To: \n"
1110
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
12-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team: LANGUAGE <[email protected]>\n"
15-
"Language: \n"
11+
"PO-Revision-Date: 2017-05-16 22:39+0200\n"
12+
"Language: fr\n"
1613
"MIME-Version: 1.0\n"
1714
"Content-Type: text/plain; charset=UTF-8\n"
1815
"Content-Transfer-Encoding: 8bit\n"
16+
"Last-Translator: Julien Palard <[email protected]>\n"
17+
"Language-Team: \n"
18+
"X-Generator: Poedit 1.8.11\n"
1919

2020
#: ../Doc/tutorial/stdlib2.rst:5
21-
#, fuzzy
2221
msgid "Brief Tour of the Standard Library --- Part II"
23-
msgstr "Rapide tour de la Bibliothèque Standard -- Deuxième partie"
22+
msgstr "Survol de la Bibliothèque Standard -- Partie II"
2423

2524
#: ../Doc/tutorial/stdlib2.rst:7
2625
msgid ""

0 commit comments

Comments
 (0)