python-docs-fr/library/pipes.po

112 lines
3.2 KiB
Plaintext
Raw Normal View History

2016-10-30 09:46:26 +00:00
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2016, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
2017-04-02 20:14:06 +00:00
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
2016-10-30 09:46:26 +00:00
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/library/pipes.rst:2
msgid ":mod:`pipes` --- Interface to shell pipelines"
msgstr ""
#: ../Doc/library/pipes.rst:10
msgid "**Source code:** :source:`Lib/pipes.py`"
msgstr "**Code source :** :source:`Lib/pipes.py`"
#: ../Doc/library/pipes.rst:14
msgid ""
"The :mod:`pipes` module defines a class to abstract the concept of a "
"*pipeline* --- a sequence of converters from one file to another."
msgstr ""
#: ../Doc/library/pipes.rst:17
msgid ""
"Because the module uses :program:`/bin/sh` command lines, a POSIX or "
"compatible shell for :func:`os.system` and :func:`os.popen` is required."
msgstr ""
#: ../Doc/library/pipes.rst:20
msgid "The :mod:`pipes` module defines the following class:"
msgstr ""
#: ../Doc/library/pipes.rst:25
msgid "An abstraction of a pipeline."
msgstr ""
#: ../Doc/library/pipes.rst:27
msgid "Example::"
msgstr "Exemples ::"
#: ../Doc/library/pipes.rst:42
msgid "Template Objects"
msgstr ""
#: ../Doc/library/pipes.rst:44
msgid "Template objects following methods:"
msgstr ""
#: ../Doc/library/pipes.rst:49
msgid "Restore a pipeline template to its initial state."
msgstr ""
#: ../Doc/library/pipes.rst:54
msgid "Return a new, equivalent, pipeline template."
msgstr ""
#: ../Doc/library/pipes.rst:59
msgid ""
"If *flag* is true, turn debugging on. Otherwise, turn debugging off. When "
"debugging is on, commands to be executed are printed, and the shell is given "
"``set -x`` command to be more verbose."
msgstr ""
#: ../Doc/library/pipes.rst:66
msgid ""
"Append a new action at the end. The *cmd* variable must be a valid bourne "
"shell command. The *kind* variable consists of two letters."
msgstr ""
#: ../Doc/library/pipes.rst:69
msgid ""
"The first letter can be either of ``'-'`` (which means the command reads its "
"standard input), ``'f'`` (which means the commands reads a given file on the "
"command line) or ``'.'`` (which means the commands reads no input, and hence "
"must be first.)"
msgstr ""
#: ../Doc/library/pipes.rst:74
msgid ""
"Similarly, the second letter can be either of ``'-'`` (which means the "
"command writes to standard output), ``'f'`` (which means the command writes "
"a file on the command line) or ``'.'`` (which means the command does not "
"write anything, and hence must be last.)"
msgstr ""
#: ../Doc/library/pipes.rst:82
msgid ""
"Add a new action at the beginning. See :meth:`append` for explanations of "
"the arguments."
msgstr ""
#: ../Doc/library/pipes.rst:88
msgid ""
"Return a file-like object, open to *file*, but read from or written to by "
"the pipeline. Note that only one of ``'r'``, ``'w'`` may be given."
msgstr ""
#: ../Doc/library/pipes.rst:94
msgid "Copy *infile* to *outfile* through the pipe."
msgstr ""