python-docs-fr/library/rlcompleter.po

112 lines
4.5 KiB
Plaintext
Raw Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
2020-09-11 07:11:46 +00:00
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
2022-10-18 10:38:19 +00:00
"PO-Revision-Date: 2022-10-18 12:31+0200\n"
2018-10-13 15:54:03 +00:00
"Last-Translator: \n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.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"
2018-07-12 20:37:23 +00:00
"X-Generator: Poedit 1.8.11\n"
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`rlcompleter` --- Completion function for GNU readline"
msgstr ":mod:`rlcompleter` — Fonction de complétion pour *GNU readline*"
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:9
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/rlcompleter.py`"
2018-10-04 07:52:16 +00:00
msgstr "**Code source :** :source:`Lib/rlcompleter.py`"
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:13
2016-10-30 09:46:26 +00:00
msgid ""
"The :mod:`rlcompleter` module defines a completion function suitable for "
"the :mod:`readline` module by completing valid Python identifiers and "
"keywords."
msgstr ""
2018-07-12 20:37:23 +00:00
"Le module :mod:`rlcompleter` définit une fonction de complétion appropriée "
"pour le module :mod:`readline` en complétant des identifiants et mots-clés "
2022-10-18 10:38:19 +00:00
"Python valides."
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:16
2016-10-30 09:46:26 +00:00
msgid ""
"When this module is imported on a Unix platform with the :mod:`readline` "
"module available, an instance of the :class:`Completer` class is "
"automatically created and its :meth:`complete` method is set as the :mod:"
"`readline` completer."
msgstr ""
2018-07-15 09:43:59 +00:00
"Quand le module est importé dans une plate-forme Unix et la méthode :meth:"
"`complete` est configurée pour assurer la complétion de :mod:`readline`, une "
"instance de classe :class:`Completer` est automatiquement créée et la "
2022-10-18 10:38:19 +00:00
"méthode est configurée au finisseur :meth:`complete`"
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:20
2016-10-30 09:46:26 +00:00
msgid "Example::"
msgstr "Exemple ::"
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:31
2016-10-30 09:46:26 +00:00
msgid ""
"The :mod:`rlcompleter` module is designed for use with Python's :ref:"
"`interactive mode <tut-interactive>`. Unless Python is run with the :option:"
"`-S` option, the module is automatically imported and configured (see :ref:"
"`rlcompleter-config`)."
msgstr ""
2018-10-04 07:52:16 +00:00
"Le module :mod:`rlcompleter` est conçu pour être utilisé par le :ref:`mode "
2018-07-15 09:43:59 +00:00
"interactif <tut-interactive>` de Python. À moins que Python ne soit exécuté "
"avec l'option :option:`-S`, le module est automatiquement importé et "
"configuré (voir :ref:`rlcompleter-config`)."
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:36
2016-10-30 09:46:26 +00:00
msgid ""
"On platforms without :mod:`readline`, the :class:`Completer` class defined "
"by this module can still be used for custom purposes."
msgstr ""
2018-07-12 20:37:23 +00:00
"Sur les plate-formes sans :mod:`readline`, la classe :class:`Completer` "
"définie par ce module peut quand même être utilisée pour des fins "
"personnalisées."
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:43
2016-10-30 09:46:26 +00:00
msgid "Completer Objects"
2018-10-04 07:52:16 +00:00
msgstr "Objets pour la complétion (*Completer Objects*)"
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:45
2016-10-30 09:46:26 +00:00
msgid "Completer objects have the following method:"
msgstr ""
2018-10-04 07:52:16 +00:00
"Les objets pour la complétion (*Completer objects* en anglais) disposent de "
"la méthode suivante :"
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:50
2016-10-30 09:46:26 +00:00
msgid "Return the *state*\\ th completion for *text*."
msgstr "Renvoie la *state*\\ :sup:`e` complétion pour *text*."
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:52
2016-10-30 09:46:26 +00:00
msgid ""
"If called for *text* that doesn't include a period character (``'.'``), it "
"will complete from names currently defined in :mod:`__main__`, :mod:"
"`builtins` and keywords (as defined by the :mod:`keyword` module)."
msgstr ""
2018-07-15 09:43:59 +00:00
"Si *text* ne contient pas un caractère point (``'.'``), il puise dans les "
"noms actuellement définis dans :mod:`__main__`, :mod:`builtins` ainsi que "
2018-10-04 07:52:16 +00:00
"les mots-clés (ainsi que définis par le module :mod:`keyword`)"
2016-10-30 09:46:26 +00:00
#: library/rlcompleter.rst:56
2016-10-30 09:46:26 +00:00
msgid ""
"If called for a dotted name, it will try to evaluate anything without "
"obvious side-effects (functions will not be evaluated, but it can generate "
"calls to :meth:`__getattr__`) up to the last part, and find matches for the "
"rest via the :func:`dir` function. Any exception raised during the "
"evaluation of the expression is caught, silenced and :const:`None` is "
"returned."
msgstr ""
2018-07-15 09:43:59 +00:00
"Quand elle est appelée pour un nom qui comporte un point, elle ne tente "
"d'évaluer que ce qui n'a pas d'effet secondaire (les fonctions ne sont pas "
"évaluées, mais elle peut faire des appels à :meth:`__getattr__`), jusqu'à la "
"dernière partie, et trouve des équivalents pour le reste via la fonction :"
2018-10-04 07:52:16 +00:00
"func:`dir`. Toute exception levée durant l'évaluation de l'expression est "
"interceptée, mise sous silence, et :const:`None` est renvoyé."