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

218 lines
9.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"
2020-09-11 07:11:46 +00:00
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
"PO-Revision-Date: 2019-11-18 08:18+0100\n"
2019-12-05 22:41:32 +00:00
"Last-Translator: Jules Lasne <jules.lasne@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"
"X-Generator: Poedit 2.2.4\n"
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`stringprep` --- Internet String Preparation"
2019-02-26 15:13:30 +00:00
msgstr ":mod:`stringprep` — Préparation des chaines de caractères internet"
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:10
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/stringprep.py`"
2019-02-26 15:13:30 +00:00
msgstr "**Code source :** :source:`Lib/stringprep.py`"
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:14
2016-10-30 09:46:26 +00:00
msgid ""
"When identifying things (such as host names) in the internet, it is often "
"necessary to compare such identifications for \"equality\". Exactly how this "
"comparison is executed may depend on the application domain, e.g. whether it "
"should be case-insensitive or not. It may be also necessary to restrict the "
"possible identifications, to allow only identifications consisting of "
"\"printable\" characters."
msgstr ""
2019-02-26 15:13:30 +00:00
"Nommer les différentes choses d'internet (comme les hôtes) amène souvent au "
"besoin de comparer ces identifiants, ce qui nécessite un critère "
"d'« égalité ». La manière dont cette comparaison est effectuée dépend du "
"domaine d'application, c'est-à-dire si elle doit être sensible à la casse ou "
"non. Il peut être aussi nécessaire de restreindre les identifiants "
"possibles, pour permettre uniquement les identifiants composés de caractères "
 imprimables »."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:21
2016-10-30 09:46:26 +00:00
msgid ""
":rfc:`3454` defines a procedure for \"preparing\" Unicode strings in "
"internet protocols. Before passing strings onto the wire, they are processed "
"with the preparation procedure, after which they have a certain normalized "
"form. The RFC defines a set of tables, which can be combined into profiles. "
"Each profile must define which tables it uses, and what other optional parts "
"of the ``stringprep`` procedure are part of the profile. One example of a "
"``stringprep`` profile is ``nameprep``, which is used for internationalized "
"domain names."
msgstr ""
2019-02-26 15:02:57 +00:00
"La :rfc:`3454` définit une procédure pour \"préparer\" des chaines de "
2019-02-26 15:13:30 +00:00
"caractères Unicode dans les protocoles internet. Avant de passer des chaines "
"de caractères sur le câble, elles sont traitées avec la procédure de "
2019-02-26 15:02:57 +00:00
"préparation, après laquelle ils obtiennent une certaines forme normalisée. "
"Les RFC définissent un lot de tables, qui peuvent être combinées en profils. "
"Chaque profil doit définir quelles tables il utilise et quelles autres "
"parties optionnelles de la procédure *stringprep* font partie du profil. Un "
"exemple de profil *stringprep* est *nameprep*, qui est utilisé pour les noms "
"de domaine internationalisés."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:29
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-10 09:32:30 +00:00
"The module :mod:`stringprep` only exposes the tables from :rfc:`3454`. As "
"these tables would be very large to represent them as dictionaries or lists, "
"the module uses the Unicode character database internally. The module source "
2016-10-30 09:46:26 +00:00
"code itself was generated using the ``mkstringprep.py`` utility."
msgstr ""
2019-02-26 15:02:57 +00:00
"Le module :mod:`stringprep` expose uniquement les tables de la :rfc:`3454`. "
"Comme ces tables seraient très grandes à représenter en tant que "
"dictionnaires ou listes, le module utilise, en interne, la base de données "
"des caractères Unicode. Le code source du module, lui-même, a été généré en "
2019-02-26 15:13:30 +00:00
"utilisant l'utilitaire ``mkstringprep.py``."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:34
2016-10-30 09:46:26 +00:00
msgid ""
"As a result, these tables are exposed as functions, not as data structures. "
"There are two kinds of tables in the RFC: sets and mappings. For a set, :mod:"
"`stringprep` provides the \"characteristic function\", i.e. a function that "
"returns ``True`` if the parameter is part of the set. For mappings, it "
"provides the mapping function: given the key, it returns the associated "
"value. Below is a list of all functions available in the module."
2016-10-30 09:46:26 +00:00
msgstr ""
2019-02-26 15:02:57 +00:00
"En conséquence, ces tables sont exposées en tant que fonctions et non en "
2019-02-26 15:13:30 +00:00
"structures de données. Il y a deux types de tables dans la RFC : les "
"ensemble et les mises en correspondance. Pour un ensemble, :mod:`stringprep` "
"fournit la \"fonction caractéristique\", c'est-à-dire une fonction qui "
"renvoie ``True`` si le paramètre fait partie de l'ensemble. Pour les mises "
"en correspondance, il fournit la fonction de mise en correspondance : ayant "
2019-02-26 15:13:30 +00:00
"obtenu la clé, il renvoie la valeur associée. Ci-dessous se trouve une liste "
"de toutes les fonctions disponibles dans le module."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:44
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableA.1 (Unassigned code points in Unicode "
"3.2)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Détermine si le code est en table A.1 (points de code non-assigné dans "
"Unicode 3.2)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:49
2016-10-30 09:46:26 +00:00
msgid "Determine whether *code* is in tableB.1 (Commonly mapped to nothing)."
msgstr ""
2019-02-26 15:02:57 +00:00
"Détermine si le code est en table B.1 (habituellement mis en correspondance "
"avec rien)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:54
2016-10-30 09:46:26 +00:00
msgid ""
"Return the mapped value for *code* according to tableB.2 (Mapping for case-"
"folding used with NFKC)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Renvoie la valeur correspondante à *code* selon la table B.2 (mise en "
"correspondance pour la gestion de la casse utilisée avec *NFKC*)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:60
2016-10-30 09:46:26 +00:00
msgid ""
"Return the mapped value for *code* according to tableB.3 (Mapping for case-"
"folding used with no normalization)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Renvoie la valeur correspondante à *code* dans la table B.3 (mise en "
"correspondance pour la gestion de la casse utilisée sans normalisation)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:66
2016-10-30 09:46:26 +00:00
msgid "Determine whether *code* is in tableC.1.1 (ASCII space characters)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Détermine si le code est dans la table C.1.1 (caractères d'espacement ASCII)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:71
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableC.1.2 (Non-ASCII space characters)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Détermine si le code est dans la table C.1.2 (caractères d'espacement non "
"ASCII)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:76
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableC.1 (Space characters, union of C.1.1 "
"and C.1.2)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Détermine si le code est dans la table C.1 (caractères d'espacement, union "
"de C.1.1 et C.1.2)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:82
2016-10-30 09:46:26 +00:00
msgid "Determine whether *code* is in tableC.2.1 (ASCII control characters)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Détermine si le code est dans la table C.2.1 (caractères de contrôle ASCII)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:87
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableC.2.2 (Non-ASCII control characters)."
msgstr ""
2019-02-26 15:02:57 +00:00
"Détermine si le code est en table C.2.2 (caractères de contrôle non ASCII)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:92
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableC.2 (Control characters, union of C.2.1 "
"and C.2.2)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Détermine si le code est dans la table C.2 (caractères de contrôle, union de "
2019-02-26 15:02:57 +00:00
"C.2.1 et C.2.2)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:98
2016-10-30 09:46:26 +00:00
msgid "Determine whether *code* is in tableC.3 (Private use)."
2019-02-26 15:02:57 +00:00
msgstr "Détermine si le code est en table C.3 (usage privé)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:103
2016-10-30 09:46:26 +00:00
msgid "Determine whether *code* is in tableC.4 (Non-character code points)."
2019-02-26 15:13:30 +00:00
msgstr ""
"Détermine si le code est dans la table C.4 (points de code non-caractère)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:108
2016-10-30 09:46:26 +00:00
msgid "Determine whether *code* is in tableC.5 (Surrogate codes)."
2019-02-26 15:02:57 +00:00
msgstr "Détermine si le code est en table C.5 (codes substituts)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:113
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableC.6 (Inappropriate for plain text)."
2019-02-26 15:13:30 +00:00
msgstr ""
"Détermine si le code est dans la table C.6 (Inapproprié pour texte brut)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:118
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableC.7 (Inappropriate for canonical "
"representation)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Détermine si le code est dans la table C.7 (inapproprié pour les "
"représentations *canonics1*)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:124
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableC.8 (Change display properties or are "
"deprecated)."
msgstr ""
2019-02-26 15:13:30 +00:00
"Détermine si le code est dans la table C.8 (change de propriétés d'affichage "
"ou sont obsolètes)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:130
2016-10-30 09:46:26 +00:00
msgid "Determine whether *code* is in tableC.9 (Tagging characters)."
2019-02-26 15:13:30 +00:00
msgstr "Détermine si le code est dans la table C.9 (caractères de marquage)."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:135
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableD.1 (Characters with bidirectional "
"property \"R\" or \"AL\")."
msgstr ""
2019-02-26 15:02:57 +00:00
"Détermine si le code est en table D.1 (caractères avec propriété "
"bidirectionnelle \"R\" ou \"AL\")."
2016-10-30 09:46:26 +00:00
#: library/stringprep.rst:141
2016-10-30 09:46:26 +00:00
msgid ""
"Determine whether *code* is in tableD.2 (Characters with bidirectional "
"property \"L\")."
msgstr ""
2019-02-26 15:13:30 +00:00
"Détermine si le code est dans la table D.2 (caractères avec propriété "
2019-02-26 15:02:57 +00:00
"bidirectionnelle \"L\")."