python-docs-fr/reference/grammar.po

46 lines
1.7 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"
"PO-Revision-Date: 2018-10-05 08:42+0200\n"
2017-10-31 16:49:39 +00:00
"Last-Translator: Julien Palard <julien@palard.fr>\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"
#: reference/grammar.rst:2
2016-10-30 09:46:26 +00:00
msgid "Full Grammar specification"
msgstr "Spécification complète de la grammaire"
2016-10-30 09:46:26 +00:00
#: reference/grammar.rst:4
2016-10-30 09:46:26 +00:00
msgid ""
2020-09-11 07:11:46 +00:00
"This is the full Python grammar, derived directly from the grammar used to "
"generate the CPython parser (see :source:`Grammar/python.gram`). The version "
"here omits details related to code generation and error recovery."
2016-10-30 09:46:26 +00:00
msgstr ""
2020-09-11 07:11:46 +00:00
#: reference/grammar.rst:9
msgid ""
"The notation is a mixture of `EBNF <https://en.wikipedia.org/wiki/"
"Extended_Backus%E2%80%93Naur_form>`_ and `PEG <https://en.wikipedia.org/wiki/"
"Parsing_expression_grammar>`_. In particular, ``&`` followed by a symbol, "
"token or parenthesized group indicates a positive lookahead (i.e., is "
"required to match but not consumed), while ``!`` indicates a negative "
"lookahead (i.e., is required _not_ to match). We use the ``|`` separator to "
"mean PEG's \"ordered choice\" (written as ``/`` in traditional PEG grammars)."
msgstr ""
#~ msgid ""
#~ "This is the full Python grammar, as it is read by the parser generator "
#~ "and used to parse Python source files:"
#~ msgstr ""
#~ "Ceci est la grammaire de Python, exhaustive, telle qu'elle est lue par le "
#~ "générateur d'analyseur, et utilisée pour analyser des fichiers sources en "
#~ "Python :"