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

71 lines
3.0 KiB
Plaintext
Raw Permalink 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"
2022-03-23 17:40:12 +00:00
"POT-Creation-Date: 2022-03-23 18:39+0100\n"
2018-10-13 15:54:03 +00:00
"PO-Revision-Date: 2018-10-13 17:52+0200\n"
2017-10-25 13:16:11 +00:00
"Last-Translator: Bruno Inec <brunoinec@gmail.com>\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"
#: library/html.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`html` --- HyperText Markup Language support"
msgstr ":mod:`html` — Support du HyperText Markup Language"
2016-10-30 09:46:26 +00:00
#: library/html.rst:7
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/html/__init__.py`"
2017-10-25 13:16:11 +00:00
msgstr "**Source code:** :source:`Lib/html/__init__.py`"
2016-10-30 09:46:26 +00:00
#: library/html.rst:11
2016-10-30 09:46:26 +00:00
msgid "This module defines utilities to manipulate HTML."
2017-10-25 13:16:11 +00:00
msgstr "Ce module définit des outils permettant la manipulation d'HTML."
2016-10-30 09:46:26 +00:00
#: library/html.rst:15
2016-10-30 09:46:26 +00:00
msgid ""
"Convert the characters ``&``, ``<`` and ``>`` in string *s* to HTML-safe "
"sequences. Use this if you need to display text that might contain such "
2022-03-23 17:40:12 +00:00
"characters in HTML. If the optional flag *quote* is true, the characters "
"(``\"``) and (``'``) are also translated; this helps for inclusion in an "
"HTML attribute value delimited by quotes, as in ``<a href=\"...\">``."
2016-10-30 09:46:26 +00:00
msgstr ""
2017-10-25 13:16:11 +00:00
"Convertit les caractères ``&``, ``<`` et ``>`` de la chaîne de caractères "
"*s* en séquences HTML valides. À utiliser si le texte à afficher pourrait "
"contenir de tels caractères dans le HTML. Si le paramètre optionnel *quote* "
"est vrai, les caractères (``\"``) et (``'``) sont également traduits; cela "
"est utile pour les inclusions dans des valeurs d'attributs HTML délimitées "
"par des guillemets, comme dans ``<a href=\"...\">``."
2016-10-30 09:46:26 +00:00
#: library/html.rst:26
2016-10-30 09:46:26 +00:00
msgid ""
"Convert all named and numeric character references (e.g. ``&gt;``, ``&#62;"
2018-10-13 15:54:03 +00:00
"``, ``&#x3e;``) in the string *s* to the corresponding Unicode characters. "
2016-10-30 09:46:26 +00:00
"This function uses the rules defined by the HTML 5 standard for both valid "
"and invalid character references, and the :data:`list of HTML 5 named "
"character references <html.entities.html5>`."
msgstr ""
2017-10-25 13:16:11 +00:00
"Convertit toutes les références de caractères nommés et numériques (e.g. "
2018-10-13 15:54:03 +00:00
"``&gt;``, ``&#62;``, ``&#x3e;``) dans la chaîne de caractères *s* par les "
2018-09-27 13:14:57 +00:00
"caractères Unicode correspondants. Cette fonction utilise les règles "
"définies par le standard HTML 5 à la fois pour les caractères valides et les "
2017-10-25 13:16:11 +00:00
"caractères invalides, et la :data:`liste des références des caractères "
"nommés en HTML 5 <html.entities.html5>`."
2016-10-30 09:46:26 +00:00
#: library/html.rst:36
2016-10-30 09:46:26 +00:00
msgid "Submodules in the ``html`` package are:"
msgstr "Les sous-modules dans le paquet ``html`` sont :"
2016-10-30 09:46:26 +00:00
#: library/html.rst:38
2016-10-30 09:46:26 +00:00
msgid ":mod:`html.parser` -- HTML/XHTML parser with lenient parsing mode"
2017-10-31 16:49:39 +00:00
msgstr ""
":mod:`html.parser` -- Parseur HTML/XHTML avec un mode de *parsing* tolérant"
2016-10-30 09:46:26 +00:00
#: library/html.rst:39
2016-10-30 09:46:26 +00:00
msgid ":mod:`html.entities` -- HTML entity definitions"
2017-10-25 13:16:11 +00:00
msgstr ":mod:`html.entities` -- Définitions d'entités HTML"