-
-
Notifications
You must be signed in to change notification settings - Fork 264
library/rlcompleter.po #265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,28 +6,32 @@ msgstr "" | |
| "Project-Id-Version: Python 3.6\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2017-04-02 22:11+0200\n" | ||
| "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
| "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
| "PO-Revision-Date: 2018-07-15 11:38+0200\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" | ||
| "Last-Translator: \n" | ||
| "X-Generator: Poedit 1.8.11\n" | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:2 | ||
| msgid ":mod:`rlcompleter` --- Completion function for GNU readline" | ||
| msgstr "" | ||
| msgstr ":mod:`rlcompleter` --- Fonction de complétion pour GNU readline" | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:9 | ||
| msgid "**Source code:** :source:`Lib/rlcompleter.py`" | ||
| msgstr "" | ||
| msgstr "**Source code:** :source:`Lib/rlcompleter.py`" | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:13 | ||
| msgid "" | ||
| "The :mod:`rlcompleter` module defines a completion function suitable for " | ||
| "the :mod:`readline` module by completing valid Python identifiers and " | ||
| "keywords." | ||
| msgstr "" | ||
| "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 " | ||
| "Python valides. " | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:16 | ||
| msgid "" | ||
|
|
@@ -36,6 +40,10 @@ msgid "" | |
| "automatically created and its :meth:`complete` method is set as the :mod:" | ||
| "`readline` completer." | ||
| msgstr "" | ||
| "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 " | ||
| "méthode est configurée au finisseur :meth:`complete` " | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:20 | ||
| msgid "Example::" | ||
|
|
@@ -48,31 +56,43 @@ msgid "" | |
| "`-S` option, the module is automatically imported and configured (see :ref:" | ||
| "`rlcompleter-config`)." | ||
| msgstr "" | ||
| "Le module :mod:`rlcompleter` est conçu pour être utilisé par le :ref: `mode " | ||
| "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`)." | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:36 | ||
| msgid "" | ||
| "On platforms without :mod:`readline`, the :class:`Completer` class defined " | ||
| "by this module can still be used for custom purposes." | ||
| msgstr "" | ||
| "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." | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:43 | ||
| msgid "Completer Objects" | ||
| msgstr "" | ||
| msgstr "Objets pour la complétion (Completer Objects)" | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:45 | ||
| msgid "Completer objects have the following method:" | ||
| msgstr "" | ||
| "Les objets pour la complétion (Completer objects) disposent de la méthode " | ||
| "suivante :" | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:50 | ||
| msgid "Return the *state*\\ th completion for *text*." | ||
| msgstr "" | ||
| msgstr "Renvoie le *state*-ième complétion pour *text*." | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:52 | ||
| 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 "" | ||
| "Si *text* ne contient pas un caractère point (``'.'``), il puise dans les " | ||
| "noms actuellement définis dans :mod:`__main__`, :mod:`builtins` ainsi que " | ||
| "les mots -clés (ainsi que définis par le module :mod:`keyword`)" | ||
|
|
||
| #: ../Doc/library/rlcompleter.rst:56 | ||
| msgid "" | ||
|
|
@@ -83,3 +103,10 @@ msgid "" | |
| "evaluation of the expression is caught, silenced and :const:`None` is " | ||
| "returned." | ||
| msgstr "" | ||
| "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 :" | ||
| "func:`dir`. Toute exception qui est relevée durant l'évaluation de " | ||
| "l'expression est soit interceptée, mise sous silence, ou :const:`None` est " | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Non : l'exception levée est interceptée, mise sous silence et None est renvoyée. En d'autres termes, cela veut dire que le module de complétion ne fait pas "planter" l'interpréteur ou le programme qui l'appelle. |
||
| "renvoyée." | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/le/la/