Skip to content

Commit f70f87d

Browse files
committed
job done
1 parent 675aa74 commit f70f87d

File tree

1 file changed

+46
-47
lines changed

1 file changed

+46
-47
lines changed

library/xml.dom.po

Lines changed: 46 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.6\n"
109
"Report-Msgid-Bugs-To: \n"
1110
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
12-
"PO-Revision-Date: 2017-09-22 16:13+0200\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team: LANGUAGE <LL@li.org>\n"
11+
"PO-Revision-Date: 2017-09-24 15:55+0200\n"
12+
"Last-Translator: Cyprien Le Pannérer <cyplp+tradpython@free.fr>\n"
13+
"Language-Team: FRENCH <LL@li.org>\n"
1514
"Language: fr\n"
1615
"MIME-Version: 1.0\n"
1716
"Content-Type: text/plain; charset=UTF-8\n"
@@ -904,28 +903,28 @@ msgid ""
904903
"There are also experimental methods that give this class more mapping "
905904
"behavior. You can use them or you can use the standardized :meth:"
906905
"`getAttribute\\*` family of methods on the :class:`Element` objects."
907-
msgstr ""
906+
msgstr "Il y existe également des méthodes expérimentales qui donne à cette classe un comportement plus *mappable*. Vous pouvez les utiliser ou utiliser la famille de méthode standardisés :meth:`getAttribute\\*` des objets :class:`Element`."
908907

909908
#: ../Doc/library/xml.dom.rst:744
910909
msgid "Comment Objects"
911-
msgstr ""
910+
msgstr "Objets Comment"
912911

913912
#: ../Doc/library/xml.dom.rst:746
914913
msgid ""
915914
":class:`Comment` represents a comment in the XML document. It is a subclass "
916915
"of :class:`Node`, but cannot have child nodes."
917-
msgstr ""
916+
msgstr ":class:`Comment` représente un commentaire dans le document XML. C'est une sous classe :class:`Node` mais n'a aucune nœuds fils."
918917

919918
#: ../Doc/library/xml.dom.rst:752
920919
msgid ""
921920
"The content of the comment as a string. The attribute contains all "
922921
"characters between the leading ``<!-``\\ ``-`` and trailing ``-``\\ ``->``, "
923922
"but does not include them."
924-
msgstr ""
923+
msgstr "Le contenu du commentaire comme une chaîne. L'attribut contient tous les caractères entre ``<!-``\\ ``-`` et ``-``\\ ``->`` mais ne les inclues pas."
925924

926925
#: ../Doc/library/xml.dom.rst:760
927926
msgid "Text and CDATASection Objects"
928-
msgstr ""
927+
msgstr "Objets Text et CDATASection"
929928

930929
#: ../Doc/library/xml.dom.rst:762
931930
msgid ""
@@ -934,17 +933,17 @@ msgid ""
934933
"the text enclosed in CDATA marked sections are stored in :class:"
935934
"`CDATASection` objects. These two interfaces are identical, but provide "
936935
"different values for the :attr:`nodeType` attribute."
937-
msgstr ""
936+
msgstr "L'interface :class:`Text` représente le texte dans un document XML. Si le parseur et l'implémentation DOM supporte les extensions XML du DOM, les portion de texte encapsulées dans des section marquées CDATA seront stockées dans des objets :class:`CDATASection`. Ces deux interfaces sont identiques mais fournissent des valeurs différentes pour l'attribut :attr:`nodeType`."
938937

939938
#: ../Doc/library/xml.dom.rst:768
940939
msgid ""
941940
"These interfaces extend the :class:`Node` interface. They cannot have child "
942941
"nodes."
943-
msgstr ""
942+
msgstr "Ces interfaces étendent l'interface :class:`Node`. Elles ne peuvent pas avoir de nœuds fils."
944943

945944
#: ../Doc/library/xml.dom.rst:774
946945
msgid "The content of the text node as a string."
947-
msgstr ""
946+
msgstr "Le contenu du nœud texte comme une chaîne."
948947

949948
#: ../Doc/library/xml.dom.rst:778
950949
msgid ""
@@ -954,29 +953,29 @@ msgid ""
954953
"by more than one node in the document tree. There is no way to determine "
955954
"whether two adjacent :class:`CDATASection` nodes represent different CDATA "
956955
"marked sections."
957-
msgstr ""
956+
msgstr "L'utilisation d'un nœud :class:`CDATASection` n'indique pas que le nœud représente une section complète marquée CDATA, seulement que le contenu du nœud est le contenu d'une section CDATA. Une seule section CDATA peut représenter plus d'un nœud dans l'arbre du document. Il n'y a aucun moyen de déterminer si deux nœuds :class:`CDATASection` adjacents représentent différentes sections CDATA."
958957

959958
#: ../Doc/library/xml.dom.rst:788
960959
msgid "ProcessingInstruction Objects"
961-
msgstr ""
960+
msgstr "Objets ProcessingInstruction"
962961

963962
#: ../Doc/library/xml.dom.rst:790
964963
msgid ""
965964
"Represents a processing instruction in the XML document; this inherits from "
966965
"the :class:`Node` interface and cannot have child nodes."
967-
msgstr ""
966+
msgstr "Représente une *processing instruction* dans un document XML. Hérite de l'interface :class:`Node` et ne peut avoir aucun nœud fils."
968967

969968
#: ../Doc/library/xml.dom.rst:796
970969
msgid ""
971970
"The content of the processing instruction up to the first whitespace "
972971
"character. This is a read-only attribute."
973-
msgstr ""
972+
msgstr "Le contenu de la *processing instruction* jusqu'au premier caractère blanc. Cet attribut est en lecture seule."
974973

975974
#: ../Doc/library/xml.dom.rst:802
976975
msgid ""
977976
"The content of the processing instruction following the first whitespace "
978977
"character."
979-
msgstr ""
978+
msgstr "Le contenu de la *processing instruction* après le premier caractère blanc."
980979

981980
#: ../Doc/library/xml.dom.rst:809
982981
msgid "Exceptions"
@@ -989,7 +988,7 @@ msgid ""
989988
"determine what sort of error occurred. :exc:`DOMException` instances carry "
990989
"a :attr:`code` attribute that provides the appropriate value for the "
991990
"specific exception."
992-
msgstr ""
991+
msgstr "La recommandation *DOM Level 2* définie une seule exception :exc:`DOMException` et un nombre de constantes qui permettent aux applications à déterminer quelle type d'erreur s'est produit. Les instances de :exc:`DOMException` ont un attribut :attr:`code` qui fourni une valeur approprié pour une exception spécifique."
993992

994993
#: ../Doc/library/xml.dom.rst:816
995994
msgid ""
@@ -998,114 +997,114 @@ msgid ""
998997
"codes defined by the DOM. The implementations must raise the appropriate "
999998
"specific exception, each of which carries the appropriate value for the :"
1000999
"attr:`code` attribute."
1001-
msgstr ""
1000+
msgstr "L'interface DOM de Python fournit des constant mais également étends un ensemble d'exception pour qu'il existe une exception spécifique pour chaque code d'exception défini par le DOM. L'implémentation doit lever l'exception spécifique appropriée. Chacune ayant la valeur appropriée pour l'attribut :attr:`code`."
10021001

10031002
#: ../Doc/library/xml.dom.rst:825
10041003
msgid ""
10051004
"Base exception class used for all specific DOM exceptions. This exception "
10061005
"class cannot be directly instantiated."
1007-
msgstr ""
1006+
msgstr "Exception de base utilisée pour toutes les exceptions spécifiques du DOM. Cette classe ne peut pas être instanciée directement."
10081007

10091008
#: ../Doc/library/xml.dom.rst:831
10101009
msgid ""
10111010
"Raised when a specified range of text does not fit into a string. This is "
10121011
"not known to be used in the Python DOM implementations, but may be received "
10131012
"from DOM implementations not written in Python."
1014-
msgstr ""
1013+
msgstr "Levée quand un intervalle spécifique de texte ne rentre pas dans une chaîne. Cette exception n'est pas réputée être utilisé par les implémentations DOM de Python mais elle peur être levée par des implémentations de DOM qui ne sont pas écrite en Python. "
10151014

10161015
#: ../Doc/library/xml.dom.rst:838
10171016
msgid ""
10181017
"Raised when an attempt is made to insert a node where the node type is not "
10191018
"allowed."
1020-
msgstr ""
1019+
msgstr "Levée quand l'insertion d'un nœud est tentée dans un type de nœud incompatible."
10211020

10221021
#: ../Doc/library/xml.dom.rst:844
10231022
msgid ""
10241023
"Raised when an index or size parameter to a method is negative or exceeds "
10251024
"the allowed values."
1026-
msgstr ""
1025+
msgstr "Levée quand un index ou la taille d'un paramètre d'une méthode est négatif ou excède les valeurs autorisées."
10271026

10281027
#: ../Doc/library/xml.dom.rst:850
10291028
msgid ""
10301029
"Raised when an attempt is made to insert an :class:`Attr` node that is "
10311030
"already present elsewhere in the document."
1032-
msgstr ""
1031+
msgstr "Levée quand l'insertion d'un nœud :class:`Attr` est tenté alors que ce nœud est déjà présent ailleurs dans le document."
10331032

10341033
#: ../Doc/library/xml.dom.rst:856
10351034
msgid ""
10361035
"Raised if a parameter or an operation is not supported on the underlying "
10371036
"object."
1038-
msgstr ""
1037+
msgstr "Levée si un paramètre ou une opération n'est pas supporté par l'objet sous-jacent."
10391038

10401039
#: ../Doc/library/xml.dom.rst:861
10411040
msgid ""
10421041
"This exception is raised when a string parameter contains a character that "
10431042
"is not permitted in the context it's being used in by the XML 1.0 "
10441043
"recommendation. For example, attempting to create an :class:`Element` node "
10451044
"with a space in the element type name will cause this error to be raised."
1046-
msgstr ""
1045+
msgstr "Cette exception est levée quand un paramètre chaîne contient un caractère qui n'est pas autorisé dans le contexte utilisé par la recommandation XML 1.0. Par exemple, lors la tentative de création d'un nœud :class:`Element`avec un espace de le nom de l'élément."
10471046

10481047
#: ../Doc/library/xml.dom.rst:869
10491048
msgid "Raised when an attempt is made to modify the type of a node."
1050-
msgstr ""
1049+
msgstr "Levée lors de la tentative de modifier le type de nœud."
10511050

10521051
#: ../Doc/library/xml.dom.rst:874
10531052
msgid ""
10541053
"Raised when an attempt is made to use an object that is not defined or is no "
10551054
"longer usable."
1056-
msgstr ""
1055+
msgstr "Levée quand une tentative est faite d'utiliser un objet non défini ou qui ne sont plus utilisables."
10571056

10581057
#: ../Doc/library/xml.dom.rst:880
10591058
msgid ""
10601059
"If an attempt is made to change any object in a way that is not permitted "
10611060
"with regard to the `Namespaces in XML <https://www.w3.org/TR/REC-xml-names/"
10621061
">`_ recommendation, this exception is raised."
1063-
msgstr ""
1062+
msgstr "Si une tentative est faite de changer un objet d'une manière qui n'est pas autorisé selon la recommandation `Namespaces in XML <https://www.w3.org/TR/REC-xml-names/>`_ , cette exception est levée."
10641063

10651064
#: ../Doc/library/xml.dom.rst:887
10661065
msgid ""
10671066
"Exception when a node does not exist in the referenced context. For "
10681067
"example, :meth:`NamedNodeMap.removeNamedItem` will raise this if the node "
10691068
"passed in does not exist in the map."
1070-
msgstr ""
1069+
msgstr "Exception quand un nœud n'existe pas dans le contexte référencé. Par exemple, :meth:`NamedNodeMap.removeNamedItem` lèvera cette exception si le nœud passé n'appartient pas à la séquence."
10711070

10721071
#: ../Doc/library/xml.dom.rst:894
10731072
msgid ""
10741073
"Raised when the implementation does not support the requested type of object "
10751074
"or operation."
1076-
msgstr ""
1075+
msgstr "Levée si l'implémentation ne supporte pas le type d'objet requis ou l'opération."
10771076

10781077
#: ../Doc/library/xml.dom.rst:900
10791078
msgid ""
10801079
"This is raised if data is specified for a node which does not support data."
1081-
msgstr ""
1080+
msgstr "Levée si la donné spécifiée pour un nœud n'est pas supportée."
10821081

10831082
#: ../Doc/library/xml.dom.rst:907
10841083
msgid ""
10851084
"Raised on attempts to modify an object where modifications are not allowed "
10861085
"(such as for read-only nodes)."
1087-
msgstr ""
1086+
msgstr "Levée lors de la tentative de modification sur objet où les modifications ne sont pas autorisées (tels que les nœuds en lecture seule)."
10881087

10891088
#: ../Doc/library/xml.dom.rst:913
10901089
msgid "Raised when an invalid or illegal string is specified."
1091-
msgstr ""
1090+
msgstr "Levée quand une chaîne invalide ou illégale est spécifiée."
10921091

10931092
#: ../Doc/library/xml.dom.rst:920
10941093
msgid ""
10951094
"Raised when a node is inserted in a different document than it currently "
10961095
"belongs to, and the implementation does not support migrating the node from "
10971096
"one document to the other."
1098-
msgstr ""
1097+
msgstr "Levée quand un nœud est inséré dans un document différent de celui auquel il appartient et que l'implémentation ne supporte pas la migration d'un document à un autre."
10991098

11001099
#: ../Doc/library/xml.dom.rst:924
11011100
msgid ""
11021101
"The exception codes defined in the DOM recommendation map to the exceptions "
11031102
"described above according to this table:"
1104-
msgstr ""
1103+
msgstr "Les codes d'exceptions définis par la recommandation DOM avec leur correspondance décrit si dessous selon ce tableau :"
11051104

11061105
#: ../Doc/library/xml.dom.rst:928
11071106
msgid "Constant"
1108-
msgstr ""
1107+
msgstr "Constante"
11091108

11101109
#: ../Doc/library/xml.dom.rst:928
11111110
msgid "Exception"
@@ -1233,28 +1232,28 @@ msgstr ":exc:`WrongDocumentErr`"
12331232

12341233
#: ../Doc/library/xml.dom.rst:965
12351234
msgid "Conformance"
1236-
msgstr ""
1235+
msgstr "Conformité"
12371236

12381237
#: ../Doc/library/xml.dom.rst:967
12391238
msgid ""
12401239
"This section describes the conformance requirements and relationships "
12411240
"between the Python DOM API, the W3C DOM recommendations, and the OMG IDL "
12421241
"mapping for Python."
1243-
msgstr ""
1242+
msgstr "Cette section décrit la conformité des pré requis et des relations entre l'API DOM de Python, les recommandations W3C DOM et les correspondances OMG IDL pour Python."
12441243

12451244
#: ../Doc/library/xml.dom.rst:975
12461245
msgid "Type Mapping"
1247-
msgstr ""
1246+
msgstr "Correspondance des types"
12481247

12491248
#: ../Doc/library/xml.dom.rst:977
12501249
msgid ""
12511250
"The IDL types used in the DOM specification are mapped to Python types "
12521251
"according to the following table."
1253-
msgstr ""
1252+
msgstr "Les types IDL utilisés dans la spécification DOM correspondent aux types Python selon le tableau suivant."
12541253

12551254
#: ../Doc/library/xml.dom.rst:981
12561255
msgid "IDL Type"
1257-
msgstr ""
1256+
msgstr "Type IDL"
12581257

12591258
#: ../Doc/library/xml.dom.rst:981
12601259
msgid "Python Type"
@@ -1299,14 +1298,14 @@ msgstr "``None``"
12991298

13001299
#: ../Doc/library/xml.dom.rst:999
13011300
msgid "Accessor Methods"
1302-
msgstr ""
1301+
msgstr "Méthodes d'accès"
13031302

13041303
#: ../Doc/library/xml.dom.rst:1001
13051304
msgid ""
13061305
"The mapping from OMG IDL to Python defines accessor functions for IDL "
13071306
"``attribute`` declarations in much the way the Java mapping does. Mapping "
13081307
"the IDL declarations ::"
1309-
msgstr ""
1308+
msgstr "Les correspondance de OMG IDL vers Python définissent des des fonction d'accès pour les déclarations ``attribut`` d'IDL à la manière dont Java le fait. Correspondance des déclarations IDL ::"
13101309

13111310
#: ../Doc/library/xml.dom.rst:1008
13121311
msgid ""
@@ -1316,7 +1315,7 @@ msgid ""
13161315
"The mapping, in particular, does not require that the IDL attributes are "
13171316
"accessible as normal Python attributes: ``object.someValue`` is *not* "
13181317
"required to work, and may raise an :exc:`AttributeError`."
1319-
msgstr ""
1318+
msgstr "Donne trois fonctions d'accès : une méthode \"get\" pour :attr:`someValue` (:meth:`_get_someValue`) et des méthodes \"get\" et \"set\" pour :attr:`anotherValue` (:meth:`_get_anotherValue` et :meth:`_set_anotherValue`). Le *mapping*, en particulier, ne requiert pas que les attributs IDL soient accessible comme des attributs Python normaux : ``object.someValue`` n'est *pas* requis de fonctionner et peut lever une :exc:`AttributeError`."
13201319

13211320
#: ../Doc/library/xml.dom.rst:1015
13221321
msgid ""
@@ -1337,12 +1336,12 @@ msgid ""
13371336
"methods are considered unnecessary since the attributes are accessible "
13381337
"directly from Python. \"Set\" accessors should never be provided for "
13391338
"``readonly`` attributes."
1340-
msgstr ""
1339+
msgstr "Dans l'API DOM de Python, les fonctions d'accès ne sont pas requises. Si elles sont fournies, elles doivent prendre la forme définie par le *mapping* de Python IDL, mais ces méthodes sont considérées inutiles car les attributs sont directement accessible depuis Python. Les fonctions d'accès \"Set\" ne devraient jamais être fournies pour les attributs ``readonly`` (en lecture seule)."
13411340

13421341
#: ../Doc/library/xml.dom.rst:1029
13431342
msgid ""
13441343
"The IDL definitions do not fully embody the requirements of the W3C DOM API, "
13451344
"such as the notion of certain objects, such as the return value of :meth:"
13461345
"`getElementsByTagName`, being \"live\". The Python DOM API does not require "
13471346
"implementations to enforce such requirements."
1348-
msgstr ""
1347+
msgstr "Les définitions IDL n'embarque pas entièrement les pré-requis de l'API de DOM API telle que la notion de objets ou que la valeur de retour de :meth:`getElementsByTagName` est dynamique. L'API DOM de Python ne requiert pas des implémentations de d'avoir de tel pré-requis."

0 commit comments

Comments
 (0)