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

82 lines
3.0 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"
"POT-Creation-Date: 2023-01-15 22:33+0100\n"
"PO-Revision-Date: 2021-11-06 21:41+0100\n"
"Last-Translator: Jean Abou Samra <jean@abou-samra.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"
"X-Generator: Poedit 3.0\n"
2016-10-30 09:46:26 +00:00
#: library/html.entities.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`html.entities` --- Definitions of HTML general entities"
msgstr ":mod:`html.entities` — Définitions des entités HTML générales"
2016-10-30 09:46:26 +00:00
#: library/html.entities.rst:9
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/html/entities.py`"
2017-10-25 17:16:56 +00:00
msgstr "**Source code:** :source:`Lib/html/entities.py`"
2016-10-30 09:46:26 +00:00
#: library/html.entities.rst:13
2016-10-30 09:46:26 +00:00
msgid ""
"This module defines four dictionaries, :data:`html5`, :data:"
"`name2codepoint`, :data:`codepoint2name`, and :data:`entitydefs`."
msgstr ""
2018-09-27 13:14:57 +00:00
"Ce module définit quatre dictionnaires, :data:`html5`, :data:"
2017-10-25 17:16:56 +00:00
"`name2codepoint`, :data:`codepoint2name`, et :data:`entitydefs`."
2016-10-30 09:46:26 +00:00
#: library/html.entities.rst:19
2016-10-30 09:46:26 +00:00
msgid ""
"A dictionary that maps HTML5 named character references [#]_ to the "
"equivalent Unicode character(s), e.g. ``html5['gt;'] == '>'``. Note that the "
"trailing semicolon is included in the name (e.g. ``'gt;'``), however some of "
"the names are accepted by the standard even without the semicolon: in this "
"case the name is present with and without the ``';'``. See also :func:`html."
"unescape`."
msgstr ""
2017-10-25 17:16:56 +00:00
"Un dictionnaire qui fait correspondre les références de caractères nommés "
"HTML5 [#]_ aux caractères Unicode équivalents, e.g. ``html5['gt;'] == '>'``. "
"À noter que le point-virgule en fin de chaîne est inclus dans le nom (e.g. "
"``'gt;'``), toutefois certains noms sont acceptés par le standard même sans "
"le point-virgule: dans ce cas, le nom est présent à la fois avec et sans le "
"``;``. Voir aussi :func:`html.unescape()`."
2016-10-30 09:46:26 +00:00
#: library/html.entities.rst:31
2016-10-30 09:46:26 +00:00
msgid ""
"A dictionary mapping XHTML 1.0 entity definitions to their replacement text "
"in ISO Latin-1."
msgstr ""
2018-09-27 13:14:57 +00:00
"Un dictionnaire qui fait correspondre les définitions d'entités XHTML 1.0 "
2017-10-25 17:16:56 +00:00
"avec leur remplacement en ISO Latin-1."
2016-10-30 09:46:26 +00:00
#: library/html.entities.rst:37
2016-10-30 09:46:26 +00:00
msgid "A dictionary that maps HTML entity names to the Unicode code points."
msgstr ""
2017-10-25 17:16:56 +00:00
"Un dictionnaire qui fait correspondre les noms d'entités HTML avec les "
"points de code Unicode."
2016-10-30 09:46:26 +00:00
#: library/html.entities.rst:42
2016-10-30 09:46:26 +00:00
msgid "A dictionary that maps Unicode code points to HTML entity names."
msgstr ""
2017-10-25 17:16:56 +00:00
"Un dictionnaire qui fait correspondre les points de code Unicode avec les "
"noms d'entités HTML."
2016-10-30 09:46:26 +00:00
#: library/html.entities.rst:46
2016-10-30 09:46:26 +00:00
msgid "Footnotes"
msgstr "Notes"
#: library/html.entities.rst:47
#, fuzzy
msgid ""
"See https://html.spec.whatwg.org/multipage/named-characters.html#named-"
"character-references"
2017-10-31 16:49:39 +00:00
msgstr ""
"Voir https://html.spec.whatwg.org/multipage/syntax.html#named-character-"
"references"