python-docs-fr/library/tabnanny.po

81 lines
2.5 KiB
Plaintext
Raw Normal View History

2016-10-30 09:46:26 +00:00
# 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-08-09 22:23:54 +00:00
"POT-Creation-Date: 2017-08-10 00:49+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/tabnanny.rst:2
msgid ":mod:`tabnanny` --- Detection of ambiguous indentation"
msgstr ""
#: ../Doc/library/tabnanny.rst:13
msgid "**Source code:** :source:`Lib/tabnanny.py`"
msgstr "**Code source :** :source:`Lib/tabnanny.py`"
#: ../Doc/library/tabnanny.rst:17
msgid ""
"For the time being this module is intended to be called as a script. However "
"it is possible to import it into an IDE and use the function :func:`check` "
"described below."
msgstr ""
#: ../Doc/library/tabnanny.rst:23
msgid ""
"The API provided by this module is likely to change in future releases; such "
"changes may not be backward compatible."
msgstr ""
#: ../Doc/library/tabnanny.rst:29
msgid ""
"If *file_or_dir* is a directory and not a symbolic link, then recursively "
"descend the directory tree named by *file_or_dir*, checking all :file:`.py` "
"files along the way. If *file_or_dir* is an ordinary Python source file, it "
"is checked for whitespace related problems. The diagnostic messages are "
"written to standard output using the :func:`print` function."
msgstr ""
#: ../Doc/library/tabnanny.rst:38
msgid ""
"Flag indicating whether to print verbose messages. This is incremented by "
"the ``-v`` option if called as a script."
msgstr ""
#: ../Doc/library/tabnanny.rst:44
msgid ""
"Flag indicating whether to print only the filenames of files containing "
"whitespace related problems. This is set to true by the ``-q`` option if "
"called as a script."
msgstr ""
#: ../Doc/library/tabnanny.rst:51
msgid ""
2017-04-02 20:14:06 +00:00
"Raised by :func:`process_tokens` if detecting an ambiguous indent. Captured "
"and handled in :func:`check`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: ../Doc/library/tabnanny.rst:57
msgid ""
2017-04-02 20:14:06 +00:00
"This function is used by :func:`check` to process tokens generated by the :"
"mod:`tokenize` module."
2016-10-30 09:46:26 +00:00
msgstr ""
#: ../Doc/library/tabnanny.rst:66
msgid "Module :mod:`tokenize`"
msgstr ""
#: ../Doc/library/tabnanny.rst:67
msgid "Lexical scanner for Python source code."
msgstr ""