1
0
Fork 0
python-docs-fr/library/tty.po

69 lines
2.2 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
"PO-Revision-Date: 2017-11-08 19:28+0100\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/tty.rst:2
msgid ":mod:`tty` --- Terminal control functions"
msgstr ":mod:`tty` — Fonctions de gestion du terminal"
#: library/tty.rst:11
msgid "**Source code:** :source:`Lib/tty.py`"
msgstr "**Code source :** :source:`Lib/tty.py`"
#: library/tty.rst:15
msgid ""
"The :mod:`tty` module defines functions for putting the tty into cbreak and "
"raw modes."
msgstr ""
"Le module :mod:`tty` expose des fonctions permettant de mettre le *tty* en "
"mode *cbreak* ou *raw*."
#: library/tty.rst:18
msgid ""
"Because it requires the :mod:`termios` module, it will work only on Unix."
msgstr ""
"Puisqu'il a besoin du module :mod:`termios`, il ne fonctionnera que sur Unix."
#: library/tty.rst:20
msgid "The :mod:`tty` module defines the following functions:"
msgstr "Le module :mod:`tty` définit les fonctions suivantes :"
#: library/tty.rst:25
msgid ""
"Change the mode of the file descriptor *fd* to raw. If *when* is omitted, it "
"defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios."
"tcsetattr`."
msgstr ""
"Définit le mode du descripteur de fichier *fd* à *row*. Par défaut, *when* "
"vaut :const:`termios.TCSAFLUSH`, et est passé à :func:`termios.tcsetattr`."
#: library/tty.rst:32
msgid ""
"Change the mode of file descriptor *fd* to cbreak. If *when* is omitted, it "
"defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios."
"tcsetattr`."
msgstr ""
"Définit le mode du descripteur de fichier *fd* à *cbreak*. *when* vaut :"
"const:`termios.TCSAFLUSH` par défaut, et est passé à :func:`termios."
"tcsetattr`."
#: library/tty.rst:39
msgid "Module :mod:`termios`"
msgstr "Module :mod:`termios`"
#: library/tty.rst:40
msgid "Low-level terminal control interface."
msgstr "Interface bas niveau de gestion du terminal."