Skip to content

Commit 0dfcff7

Browse files
committed
Propagating known translations.
1 parent 314724b commit 0dfcff7

110 files changed

Lines changed: 11217 additions & 10874 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

c-api/abstract.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ msgstr ""
3535
#: ../Doc/c-api/abstract.rst:14
3636
msgid ""
3737
"It is not possible to use these functions on objects that are not properly "
38-
"initialized, such as a list object that has been created by :c:func:"
39-
"`PyList_New`, but whose items have not been set to some non-\\ ``NULL`` "
40-
"value yet."
38+
"initialized, such as a list object that has been created by "
39+
":c:func:`PyList_New`, but whose items have not been set to some non-\\ "
40+
"``NULL`` value yet."
4141
msgstr ""
4242
"Il n'est pas possible d'utiliser ces fonctions sur des objets qui n'ont pas "
43-
"été correctement initialisés, comme un objet liste qui a été créé avec :c:"
44-
"func:`PyList_New` mais dont les éléments n'ont pas encore été mis à une "
43+
"été correctement initialisés, comme un objet liste qui a été créé avec "
44+
":c:func:`PyList_New` mais dont les éléments n'ont pas encore été mis à une "
4545
"valeur non-\\ ``NULL``."

c-api/allocation.po

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ msgid ""
2727
"detector's set of observed objects. Other fields of the object are not "
2828
"affected."
2929
msgstr ""
30-
"Permet d'initialiser un objet *op* nouvellement alloué ainsi que son type et "
31-
"sa référence initiale. Renvoie l'objet initialisé. La présence de *type* "
30+
"Permet d'initialiser un objet *op* nouvellement alloué ainsi que son type et"
31+
" sa référence initiale. Renvoie l'objet initialisé. La présence de *type* "
3232
"indique que l'objet doit être traité par le détecteur d'ordures cycliques, "
3333
"il est de ce fait ajouté à l'ensemble du détecteur d'objets observés. Les "
3434
"autres champs de l'objet ne sont pas affectés."
@@ -47,53 +47,54 @@ msgid ""
4747
"Allocate a new Python object using the C structure type *TYPE* and the "
4848
"Python type object *type*. Fields not defined by the Python object header "
4949
"are not initialized; the object's reference count will be one. The size of "
50-
"the memory allocation is determined from the :c:member:`~PyTypeObject."
51-
"tp_basicsize` field of the type object."
50+
"the memory allocation is determined from the "
51+
":c:member:`~PyTypeObject.tp_basicsize` field of the type object."
5252
msgstr ""
5353
"Alloue un nouvel objet Python en utilisant le type de structure C *TYPE* et "
5454
"l'objet Python *type*. Les champs non définis par l'en-tête de l'objet "
5555
"Python ne sont pas initialisés; le compteur de la référence objet sera égal "
56-
"à un. La taille de l'allocation mémoire est déterminée par le champ :c:"
57-
"member:`~PyTypeObject.tp_basicsize` de l'objet type."
56+
"à un. La taille de l'allocation mémoire est déterminée par le champ "
57+
":c:member:`~PyTypeObject.tp_basicsize` de l'objet type."
5858

5959
#: ../Doc/c-api/allocation.rst:41
6060
msgid ""
6161
"Allocate a new Python object using the C structure type *TYPE* and the "
6262
"Python type object *type*. Fields not defined by the Python object header "
6363
"are not initialized. The allocated memory allows for the *TYPE* structure "
64-
"plus *size* fields of the size given by the :c:member:`~PyTypeObject."
65-
"tp_itemsize` field of *type*. This is useful for implementing objects like "
66-
"tuples, which are able to determine their size at construction time. "
67-
"Embedding the array of fields into the same allocation decreases the number "
68-
"of allocations, improving the memory management efficiency."
64+
"plus *size* fields of the size given by the "
65+
":c:member:`~PyTypeObject.tp_itemsize` field of *type*. This is useful for "
66+
"implementing objects like tuples, which are able to determine their size at "
67+
"construction time. Embedding the array of fields into the same allocation "
68+
"decreases the number of allocations, improving the memory management "
69+
"efficiency."
6970
msgstr ""
7071
"Alloue un nouvel objet Python en utilisant le type de structure C *TYPE* et "
7172
"l'objet Python de type *type*. Les champs non définis par l'en-tête de "
7273
"l'objet Python ne sont pas initialisés. La mémoire allouée est suffisante "
73-
"pour la structure *TYPE* plus *size* champs de la taille donnée par le champ "
74-
"de *type* :c:member:`~PyTypeObject.tp_itemsize`. Ceci est utile pour "
74+
"pour la structure *TYPE* plus *size* champs de la taille donnée par le champ"
75+
" de *type* :c:member:`~PyTypeObject.tp_itemsize`. Ceci est utile pour "
7576
"l'implémentation d'objets comme les tuples, qui sont capables de déterminer "
7677
"leur taille à la construction. Allouer les champs en même temps que l'objet "
7778
"diminue le nombre d'allocations, améliorant ainsi les performances."
7879

7980
#: ../Doc/c-api/allocation.rst:53
8081
msgid ""
81-
"Releases memory allocated to an object using :c:func:`PyObject_New` or :c:"
82-
"func:`PyObject_NewVar`. This is normally called from the :c:member:"
83-
"`~PyTypeObject.tp_dealloc` handler specified in the object's type. The "
84-
"fields of the object should not be accessed after this call as the memory is "
85-
"no longer a valid Python object."
82+
"Releases memory allocated to an object using :c:func:`PyObject_New` or "
83+
":c:func:`PyObject_NewVar`. This is normally called from the "
84+
":c:member:`~PyTypeObject.tp_dealloc` handler specified in the object's type."
85+
" The fields of the object should not be accessed after this call as the "
86+
"memory is no longer a valid Python object."
8687
msgstr ""
87-
"Libère la mémoire allouée à un objet utilisant :c:func:`PyObject_New` ou :c:"
88-
"func:`PyObject_NewVar`. Ceci est normalement appelé par le gestionnaire :c:"
89-
"member:`~PyTypeObject.tp_dealloc` spécifié dans le type d'objet. Les champs "
90-
"de l'objet ne doivent plus être accédés après cet appel puisque cet "
88+
"Libère la mémoire allouée à un objet utilisant :c:func:`PyObject_New` ou "
89+
":c:func:`PyObject_NewVar`. Ceci est normalement appelé par le gestionnaire "
90+
":c:member:`~PyTypeObject.tp_dealloc` spécifié dans le type d'objet. Les "
91+
"champs de l'objet ne doivent plus être accédés après cet appel puisque cet "
9192
"emplacement mémoire ne correspond plus à un objet Python valide."
9293

9394
#: ../Doc/c-api/allocation.rst:62
9495
msgid ""
95-
"Object which is visible in Python as ``None``. This should only be accessed "
96-
"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
96+
"Object which is visible in Python as ``None``. This should only be accessed"
97+
" using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
9798
"object."
9899
msgstr ""
99100
"Objet qui est visible en tant que ``None`` dans Python. Ne devrait être "

c-api/apiabiversion.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ msgid ""
3232
"number in the following manner:"
3333
msgstr ""
3434
"Par exemple si le ``PY_VERSION_HEX` est défini à ``0x030401a2``, la "
35-
"version d'information sous-jacente peut être trouvée en la traitant comme un "
36-
"nombre sous 32 bits de la manière suivante:"
35+
"version d'information sous-jacente peut être trouvée en la traitant comme un"
36+
" nombre sous 32 bits de la manière suivante:"
3737

3838
#: ../Doc/c-api/apiabiversion.rst:16
3939
msgid "Bytes"

c-api/arg.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ msgstr ""
269269

270270
#: ../Doc/c-api/arg.rst:120
271271
msgid "``y`` (read-only :term:`bytes-like object`) [const char \\*]"
272-
msgstr "``y`` (Lecture-seule :term:`bytes-like object`) [constante char \\*]"
272+
msgstr ""
273+
"``y`` (:term:`objet compatible avec une chaîne d'octets <bytes-like object>` en lecture seule) [constante char \\*]"
273274

274275
#: ../Doc/c-api/arg.rst:113
275276
msgid ""
@@ -304,7 +305,7 @@ msgstr ""
304305
#: ../Doc/c-api/arg.rst:129
305306
msgid "``y#`` (read-only :term:`bytes-like object`) [const char \\*, int]"
306307
msgstr ""
307-
"``y#`` (Lecture-seule :term:`bytes-like object`) [constante char \\*, entier]"
308+
"``y#`` (:term:`objet compatible avec une chaîne d'octets <bytes-like object>` en lecture seule) [constante char \\*, entier]"
308309

309310
#: ../Doc/c-api/arg.rst:128
310311
msgid ""

c-api/bool.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ msgid ""
2626
"following macros are available, however."
2727
msgstr ""
2828
"Les booléens en Python sont implémentés comme une classe dérivée des "
29-
"entiers. Il y a seulement deux booléens, :const:`Py_False` et :const:"
30-
"`Py_True`. Comme tel, les fonctions de création de suppression ne "
29+
"entiers. Il y a seulement deux booléens, :const:`Py_False` et "
30+
":const:`Py_True`. Comme tel, les fonctions de création de suppression ne "
3131
"s'appliquent pas aux booléens. Toutefois, les macros suivantes sont "
3232
"disponibles."
3333

@@ -63,16 +63,16 @@ msgstr ""
6363

6464
#: ../Doc/c-api/bool.rst:39
6565
msgid ""
66-
"Return :const:`Py_True` from a function, properly incrementing its reference "
67-
"count."
66+
"Return :const:`Py_True` from a function, properly incrementing its reference"
67+
" count."
6868
msgstr ""
6969
"Renvoie :const:`Py_True` depuis une fonction, en incrémentant son nombre de "
7070
"références."
7171

7272
#: ../Doc/c-api/bool.rst:45
7373
msgid ""
74-
"Return a new reference to :const:`Py_True` or :const:`Py_False` depending on "
75-
"the truth value of *v*."
74+
"Return a new reference to :const:`Py_True` or :const:`Py_False` depending on"
75+
" the truth value of *v*."
7676
msgstr ""
7777
"Renvoie une nouvelle référence de :const:`Py_True` ou :const:`Py_False` en "
7878
"fonction de la valeur de *v*."

0 commit comments

Comments
 (0)