Skip to content

Commit e49544b

Browse files
Début de la traduction du fichoier type.po du dossier c-api.
1 parent 70b2e64 commit e49544b

File tree

1 file changed

+27
-4
lines changed

1 file changed

+27
-4
lines changed

c-api/type.po

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,54 @@ msgstr ""
66
"Project-Id-Version: Python 3.6\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
9-
"PO-Revision-Date: 2018-02-15 00:33+0100\n"
10-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9+
"PO-Revision-Date: 2018-09-20 21:33+0200\n"
1110
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
1211
"Language: fr\n"
1312
"MIME-Version: 1.0\n"
1413
"Content-Type: text/plain; charset=UTF-8\n"
1514
"Content-Transfer-Encoding: 8bit\n"
15+
"Last-Translator: \n"
16+
"X-Generator: Poedit 1.8.11\n"
1617

1718
#: ../Doc/c-api/type.rst:6
1819
msgid "Type Objects"
19-
msgstr "Objets type"
20+
msgstr "Type d'objets"
2021

2122
#: ../Doc/c-api/type.rst:13
2223
msgid "The C structure of the objects used to describe built-in types."
2324
msgstr ""
25+
"La structure en C des objets avait pour habitude de décrire les types natifs "
26+
"en python."
2427

2528
#: ../Doc/c-api/type.rst:18
2629
msgid ""
2730
"This is the type object for type objects; it is the same object as :class:"
2831
"`type` in the Python layer."
2932
msgstr ""
33+
"Ceci est le type d'objet pour les autres types d'objets; C'est le même objet "
34+
"que :class:`type` dans la couche de Python."
3035

3136
#: ../Doc/c-api/type.rst:24
3237
msgid ""
3338
"Return true if the object *o* is a type object, including instances of types "
3439
"derived from the standard type object. Return false in all other cases."
3540
msgstr ""
41+
"Retourne vrai si l'objet *o* est un type d'objet y compris les instances de "
42+
"types dérivé d'un objet de type standard. Retourne faux dans tous les autres "
43+
"cas."
3644

3745
#: ../Doc/c-api/type.rst:30
3846
msgid ""
3947
"Return true if the object *o* is a type object, but not a subtype of the "
4048
"standard type object. Return false in all other cases."
4149
msgstr ""
50+
"Retourne vrai si l'objet *o* est un type d'objet mais pas un sous-type "
51+
"d'objet standard. Retourne faux dans tous les autres cas."
4252

4353
#: ../Doc/c-api/type.rst:36
4454
msgid "Clear the internal lookup cache. Return the current version tag."
4555
msgstr ""
56+
"Nettoie le cache de recherche interne. Retourne la marque du drapeau courant."
4657

4758
#: ../Doc/c-api/type.rst:40
4859
msgid ""
@@ -51,29 +62,41 @@ msgid ""
5162
"flag bits are guaranteed to be stable across Python releases, but access to :"
5263
"c:member:`~PyTypeObject.tp_flags` itself is not part of the limited API."
5364
msgstr ""
65+
"Retourne le membre :c:member:`~PyTypeObject.tp_flags` du *type*. Cette "
66+
"fonction est conçue pour utiliser en priorité `Py_LIMITED_API`; les bits du "
67+
"drapeau son garanties pour être stables à travers les versions de Python, "
68+
"mais l'accès à :c:member:`~PyTypeObject.tp_flags` lui même n'est pas fourni "
69+
"par l'API."
5470

5571
#: ../Doc/c-api/type.rst:50
5672
msgid ""
5773
"Invalidate the internal lookup cache for the type and all of its subtypes. "
5874
"This function must be called after any manual modification of the attributes "
5975
"or base classes of the type."
6076
msgstr ""
77+
"Confirme la non-validité du cache de recherche interne pour le type et tous "
78+
"les sous-types. Cette fonction doit être appelée après chaque modification "
79+
"des attributs ou des classes de bases du type."
6180

6281
#: ../Doc/c-api/type.rst:57
6382
msgid ""
6483
"Return true if the type object *o* sets the feature *feature*. Type "
6584
"features are denoted by single bit flags."
6685
msgstr ""
86+
"Retourne vrai si l'objet de type *o* met la fonctionnalité *feature*. Les "
87+
"fonctionnalités de type sont marquées par des drapeaux binaire d'un bit."
6788

6889
#: ../Doc/c-api/type.rst:63
6990
msgid ""
7091
"Return true if the type object includes support for the cycle detector; this "
7192
"tests the type flag :const:`Py_TPFLAGS_HAVE_GC`."
7293
msgstr ""
94+
"Retourne vrai si le type d'objet inclut le support pour le détecteur de "
95+
"cycle; Ceci test le drapeau de type :const:`Py_TPFLAGS_HAVE_GC`."
7396

7497
#: ../Doc/c-api/type.rst:69
7598
msgid "Return true if *a* is a subtype of *b*."
76-
msgstr ""
99+
msgstr "Retourne vrai si *a* est un sous-type de *b*."
77100

78101
#: ../Doc/c-api/type.rst:71
79102
msgid ""

0 commit comments

Comments
 (0)