-
-
Notifications
You must be signed in to change notification settings - Fork 261
Expand file tree
/
Copy pathbool.po
More file actions
103 lines (91 loc) · 3.05 KB
/
bool.po
File metadata and controls
103 lines (91 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-17 09:58+0200\n"
"PO-Revision-Date: 2021-10-27 19:19+0200\n"
"Last-Translator: \n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
#: c-api/bool.rst:6
msgid "Boolean Objects"
msgstr "Les objets booléens"
#: c-api/bool.rst:8
#, fuzzy
msgid ""
"Booleans in Python are implemented as a subclass of integers. There are "
"only two booleans, :c:data:`Py_False` and :c:data:`Py_True`. As such, the "
"normal creation and deletion functions don't apply to booleans. The "
"following macros are available, however."
msgstr ""
"Les booléens en Python sont implémentés comme une classe dérivée des "
"entiers. Il y a seulement deux booléens, :const:`Py_False` "
"et :const:`Py_True`. Comme tel, les fonctions de création de suppression ne "
"s'appliquent pas aux booléens. Toutefois, les macros suivantes sont "
"disponibles."
#: c-api/bool.rst:16
msgid ""
"This instance of :c:type:`PyTypeObject` represents the Python boolean type; "
"it is the same object as :class:`bool` in the Python layer."
msgstr ""
#: c-api/bool.rst:22
msgid ""
"Return true if *o* is of type :c:data:`PyBool_Type`. This function always "
"succeeds."
msgstr ""
"Renvoie vrai si *o* est de type :c:data:`PyBook_Type`. Cette fonction "
"réussit systématiquement."
#: c-api/bool.rst:28
#, fuzzy
msgid ""
"The Python ``False`` object. This object has no methods and "
"is :term:`immortal`."
msgstr ""
"L'objet Python ``False``. Cet objet n'a pas de méthodes. En ce qui concerne "
"le comptage de référence, il doit être traité comme n'importe quel autre "
"objet."
#: c-api/bool.rst:31
msgid ":c:data:`Py_False` is :term:`immortal`."
msgstr ""
#: c-api/bool.rst:37
#, fuzzy
msgid ""
"The Python ``True`` object. This object has no methods and "
"is :term:`immortal`."
msgstr ""
"L'objet Python ``True``. Cet objet n'a pas de méthodes. En ce qui concerne "
"le comptage de références, il doit être traité comme n'importe quel autre "
"objet."
#: c-api/bool.rst:40
msgid ":c:data:`Py_True` is :term:`immortal`."
msgstr ""
#: c-api/bool.rst:46
#, fuzzy
msgid "Return :c:data:`Py_False` from a function."
msgstr ""
"Renvoie :const:`Py_False` depuis une fonction tout en incrémentant son "
"nombre de références."
#: c-api/bool.rst:51
msgid "Return :c:data:`Py_True` from a function."
msgstr ""
#: c-api/bool.rst:56
#, fuzzy
msgid ""
"Return :c:data:`Py_True` or :c:data:`Py_False`, depending on the truth value "
"of *v*."
msgstr ""
"Renvoie une nouvelle référence de :const:`Py_True` ou :const:`Py_False` en "
"fonction de la valeur de *v*."
#~ msgid ""
#~ "Return :const:`Py_True` from a function, properly incrementing its "
#~ "reference count."
#~ msgstr ""
#~ "Renvoie :const:`Py_True` depuis une fonction, en incrémentant son nombre "
#~ "de références."