@@ -9,17 +9,17 @@ msgstr ""
99"Project-Id-Version : Python 3.6\n "
1010"Report-Msgid-Bugs-To : \n "
1111"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 <LL@li.org> \n "
12+ "PO-Revision-Date : 2017-10-23 :18:44+0200 \n "
13+ "Last-Translator : Bruno Inec <brunoinec@gmail.com >\n "
14+ "Language-Team : \n "
1515"Language : fr\n "
1616"MIME-Version : 1.0\n "
1717"Content-Type : text/plain; charset=UTF-8\n "
1818"Content-Transfer-Encoding : 8bit\n "
1919
2020#: ../Doc/library/pipes.rst:2
2121msgid ":mod:`pipes` --- Interface to shell pipelines"
22- msgstr ""
22+ msgstr ":mod:`pipes` --- Interface au *pipelines* shell "
2323
2424#: ../Doc/library/pipes.rst:10
2525msgid "**Source code:** :source:`Lib/pipes.py`"
@@ -30,53 +30,64 @@ msgid ""
3030"The :mod:`pipes` module defines a class to abstract the concept of a "
3131"*pipeline* --- a sequence of converters from one file to another."
3232msgstr ""
33+ "Le module :mod:`pipes` définit une classe permettant d'abstraire le concept "
34+ "de *pipeline* --- une séquence de convertisseurs d'un fichier vers un autre."
3335
3436#: ../Doc/library/pipes.rst:17
3537msgid ""
3638"Because the module uses :program:`/bin/sh` command lines, a POSIX or "
3739"compatible shell for :func:`os.system` and :func:`os.popen` is required."
3840msgstr ""
41+ "Du fait que le module utilise les lignes de commandes :program:`/bin/sh`, "
42+ "un shell POSIX ou compatible est requis pour :func:`os.system` et "
43+ ":func:`os.popen`."
3944
4045#: ../Doc/library/pipes.rst:20
4146msgid "The :mod:`pipes` module defines the following class:"
42- msgstr ""
47+ msgstr "Le module :mod: `pipes` définit la classe suivante : "
4348
4449#: ../Doc/library/pipes.rst:25
4550msgid "An abstraction of a pipeline."
46- msgstr ""
51+ msgstr "Une abstraction d'un *pipeline* "
4752
4853#: ../Doc/library/pipes.rst:27
4954msgid "Example::"
50- msgstr "Exemples ::"
55+ msgstr "Exemple ::"
5156
5257#: ../Doc/library/pipes.rst:42
5358msgid "Template Objects"
54- msgstr ""
59+ msgstr "L'Objet *Template* "
5560
5661#: ../Doc/library/pipes.rst:44
5762msgid "Template objects following methods:"
58- msgstr ""
63+ msgstr "Les méthodes de l'objet *Template* : "
5964
6065#: ../Doc/library/pipes.rst:49
6166msgid "Restore a pipeline template to its initial state."
62- msgstr ""
67+ msgstr "Réinitialise un modèle de *pipeline* à son état inital. "
6368
6469#: ../Doc/library/pipes.rst:54
6570msgid "Return a new, equivalent, pipeline template."
66- msgstr ""
71+ msgstr "Renvoie un nouveau modèle de *pipeline*, équivalent. "
6772
6873#: ../Doc/library/pipes.rst:59
6974msgid ""
7075"If *flag* is true, turn debugging on. Otherwise, turn debugging off. When "
7176"debugging is on, commands to be executed are printed, and the shell is given "
7277"``set -x`` command to be more verbose."
7378msgstr ""
79+ "Si *flag* est vrai, active le débogage. Sinon, le désactive. Quand le "
80+ "débogage est actif, les commandes à exécuter seront affichée et le shell est "
81+ "pourvu de la commande ``set -x`` afin d'être plus verbeux."
7482
7583#: ../Doc/library/pipes.rst:66
7684msgid ""
7785"Append a new action at the end. The *cmd* variable must be a valid bourne "
7886"shell command. The *kind* variable consists of two letters."
7987msgstr ""
88+ "Ajoute une nouvelle action à la fin. La variable *cmd* doit être une "
89+ "commande *bourne shell* valide. La varialbe *kind* est composée de deux "
90+ "lettres."
8091
8192#: ../Doc/library/pipes.rst:69
8293msgid ""
@@ -85,6 +96,10 @@ msgid ""
8596"command line) or ``'.'`` (which means the commands reads no input, and hence "
8697"must be first.)"
8798msgstr ""
99+ "La première lettre peut soit être ``'-'`` (qui signifie que la commande lit "
100+ "sa sortie standard), soit ``'f'`` (qui signifie que la commande lit un "
101+ "fichier donné par la ligne de commande), soit ``'.'`` (qui signifie que la "
102+ "commande ne lit pas d'entrée, et donc doit être la première.)"
88103
89104#: ../Doc/library/pipes.rst:74
90105msgid ""
@@ -93,19 +108,28 @@ msgid ""
93108"a file on the command line) or ``'.'`` (which means the command does not "
94109"write anything, and hence must be last.)"
95110msgstr ""
111+ "De même, la seconde lettre peut soit être ``'-'`` (qui signifie que la "
112+ "commande écrit sur la sortie standard), soit ``'f'`` (qui signifie que la "
113+ "commande écrit sur un fichier donné par la ligne de commande), soit ``'.'`` "
114+ "(qui signifie que la commande n'écrit rien, et donc doit être la dernière.)"
96115
97116#: ../Doc/library/pipes.rst:82
98117msgid ""
99118"Add a new action at the beginning. See :meth:`append` for explanations of "
100119"the arguments."
101120msgstr ""
121+ "Ajoute une nouvelle action au début. Voir :meth:`append` pour plus "
122+ "d'explications sur les arguments."
102123
103124#: ../Doc/library/pipes.rst:88
104125msgid ""
105126"Return a file-like object, open to *file*, but read from or written to by "
106127"the pipeline. Note that only one of ``'r'``, ``'w'`` may be given."
107128msgstr ""
129+ "Renvoie un objet `file-like`, ouvert à *file*, mais lut du ou écrit vers par "
130+ "le *pipeline*. À noter que seulement un des deux ('r' ou 'w') peut être "
131+ "donné."
108132
109133#: ../Doc/library/pipes.rst:94
110134msgid "Copy *infile* to *outfile* through the pipe."
111- msgstr ""
135+ msgstr "Copie *infile* vers *outfile* au travers du *pipe*. "
0 commit comments