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

71 lines
3.0 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-23 18:39+0100\n"
"PO-Revision-Date: 2018-10-13 17:52+0200\n"
"Last-Translator: Bruno Inec <brunoinec@gmail.com>\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"
#: library/html.rst:2
msgid ":mod:`html` --- HyperText Markup Language support"
msgstr ":mod:`html` — Support du HyperText Markup Language"
#: library/html.rst:7
msgid "**Source code:** :source:`Lib/html/__init__.py`"
msgstr "**Source code:** :source:`Lib/html/__init__.py`"
#: library/html.rst:11
msgid "This module defines utilities to manipulate HTML."
msgstr "Ce module définit des outils permettant la manipulation d'HTML."
#: library/html.rst:15
msgid ""
"Convert the characters ``&``, ``<`` and ``>`` in string *s* to HTML-safe "
"sequences. Use this if you need to display text that might contain such "
"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=\"...\">``."
msgstr ""
"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=\"...\">``."
#: library/html.rst:26
msgid ""
"Convert all named and numeric character references (e.g. ``&gt;``, ``&#62;"
"``, ``&#x3e;``) in the string *s* to the corresponding Unicode characters. "
"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 ""
"Convertit toutes les références de caractères nommés et numériques (e.g. "
"``&gt;``, ``&#62;``, ``&#x3e;``) dans la chaîne de caractères *s* par les "
"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 "
"caractères invalides, et la :data:`liste des références des caractères "
"nommés en HTML 5 <html.entities.html5>`."
#: library/html.rst:36
msgid "Submodules in the ``html`` package are:"
msgstr "Les sous-modules dans le paquet ``html`` sont :"
#: library/html.rst:38
msgid ":mod:`html.parser` -- HTML/XHTML parser with lenient parsing mode"
msgstr ""
":mod:`html.parser` -- Parseur HTML/XHTML avec un mode de *parsing* tolérant"
#: library/html.rst:39
msgid ":mod:`html.entities` -- HTML entity definitions"
msgstr ":mod:`html.entities` -- Définitions d'entités HTML"