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

61 lines
2.0 KiB
Plaintext
Raw Normal View History

2016-10-30 09:46:26 +00:00
# SOME DESCRIPTIVE TITLE.
# 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-04-02 20:14:06 +00:00
"POT-Creation-Date: 2017-04-02 22:11+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/html.rst:2
msgid ":mod:`html` --- HyperText Markup Language support"
msgstr ""
#: ../Doc/library/html.rst:7
msgid "**Source code:** :source:`Lib/html/__init__.py`"
msgstr ""
#: ../Doc/library/html.rst:11
msgid "This module defines utilities to manipulate HTML."
msgstr ""
#: ../Doc/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 ""
#: ../Doc/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 ""
#: ../Doc/library/html.rst:36
msgid "Submodules in the ``html`` package are:"
msgstr ""
#: ../Doc/library/html.rst:38
msgid ":mod:`html.parser` -- HTML/XHTML parser with lenient parsing mode"
msgstr ""
#: ../Doc/library/html.rst:39
msgid ":mod:`html.entities` -- HTML entity definitions"
msgstr ""