fix(library/array.po): correct the translation
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful

This commit is contained in:
Ismaël Maurice 2023-09-13 20:48:32 +02:00
parent 753f9fd83c
commit 88ab46deca

View File

@ -6,8 +6,8 @@ msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-07-23 14:38+0200\n"
"PO-Revision-Date: 2023-09-06 23:15+0200\n"
"Last-Translator: Cléo Buck <cleo.buck@gmail.com>\n"
"PO-Revision-Date: 2023-09-13 20:47+0200\n"
"Last-Translator: Ismaël Tuo <ismael.tuo@edigrp.com>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@ -28,13 +28,13 @@ msgid ""
"creation time by using a :dfn:`type code`, which is a single character. The "
"following type codes are defined:"
msgstr ""
"Ce module définit un type d'objet qui permet de représenter de façon "
"compacte un tableau (*array*) de valeurs élémentaires : caractères, entiers, "
"Ce module définit un type d'objet qui permet de représenter de façon compacte "
"un tableau (*array*) de valeurs élémentaires : caractères, entiers, "
"flottants. Les tableaux sont de type séquence et se comportent de manière "
"très similaire aux listes, sauf que les types d'objets qui y sont stockés "
"sont limités. Le type est spécifié au moment de la création de lobjet en "
"utilisant :dfn:`type code`, qui est un caractère unique. Voir ci-dessous "
"pour la définition des types :"
"utilisant :dfn:`type code`, qui est un caractère unique. Voir ci-dessous pour "
"la définition des types :"
#: library/array.rst:19
msgid "Type code"
@ -209,9 +209,9 @@ msgstr ""
#: library/array.rst:61
msgid ""
"The actual representation of values is determined by the machine "
"architecture (strictly speaking, by the C implementation). The actual size "
"can be accessed through the :attr:`array.itemsize` attribute."
"The actual representation of values is determined by the machine architecture "
"(strictly speaking, by the C implementation). The actual size can be "
"accessed through the :attr:`array.itemsize` attribute."
msgstr ""
"La représentation réelle des valeurs est déterminée par l'architecture de la "
"machine (à proprement parler, par l'implémentation C). La taille réelle est "
@ -236,38 +236,37 @@ msgid ""
"object`, or iterable over elements of the appropriate type."
msgstr ""
"Un nouveau tableau dont les éléments sont limités par *typecode*, et "
"initialisés par la valeur optionnelle *initializer*, qui peut être une "
"liste, un :term:`bytes-like object`, ou un itérable sur des éléments du type "
"initialisés par la valeur optionnelle *initializer*, qui peut être une liste, "
"un :term:`bytes-like object`, ou un itérable sur des éléments du type "
"approprié."
#: library/array.rst:83
msgid ""
"If given a list or string, the initializer is passed to the new array's :"
"meth:`fromlist`, :meth:`frombytes`, or :meth:`fromunicode` method (see "
"below) to add initial items to the array. Otherwise, the iterable "
"initializer is passed to the :meth:`extend` method."
"If given a list or string, the initializer is passed to the new array's :meth:"
"`fromlist`, :meth:`frombytes`, or :meth:`fromunicode` method (see below) to "
"add initial items to the array. Otherwise, the iterable initializer is "
"passed to the :meth:`extend` method."
msgstr ""
"Si le paramètre *initializer* est une liste ou une chaîne de caractères, il "
"est passé à la méthode :meth:`fromlist`, :meth:`frombytes` ou :meth:"
"`fromunicode` du tableau (voir ci-dessous) pour ajouter les éléments "
"initiaux du tableau. Si c'est un itérable, il est passé à la méthode :meth:"
"`extend`."
"`fromunicode` du tableau (voir ci-dessous) pour ajouter les éléments initiaux "
"du tableau. Si c'est un itérable, il est passé à la méthode :meth:`extend`."
#: library/array.rst:88
msgid ""
"Array objects support the ordinary sequence operations of indexing, slicing, "
"concatenation, and multiplication. When using slice assignment, the "
"assigned value must be an array object with the same type code; in all other "
"cases, :exc:`TypeError` is raised. Array objects also implement the buffer "
"interface, and may be used wherever :term:`bytes-like objects <bytes-like "
"object>` are supported."
"concatenation, and multiplication. When using slice assignment, the assigned "
"value must be an array object with the same type code; in all other cases, :"
"exc:`TypeError` is raised. Array objects also implement the buffer interface, "
"and may be used wherever :term:`bytes-like objects <bytes-like object>` are "
"supported."
msgstr ""
"Les objets de tableau supportent les opérations classiques de séquence : "
"indiçage, découpage, concaténation et multiplication. Lors de l'utilisation "
"de tranche, la valeur assignée doit être un tableau du même type ; dans tous "
"les autres cas, l'exception :exc:`TypeError` est levée. Les objets de "
"tableau implémentent également l'interface tampon, et peuvent être utilisés "
"partout où :term:`bytes-like objects <bytes-like object>` sont supportés."
"les autres cas, l'exception :exc:`TypeError` est levée. Les objets de tableau "
"implémentent également l'interface tampon, et peuvent être utilisés partout "
"où :term:`bytes-like objects <bytes-like object>` sont supportés."
#: library/array.rst:94
msgid ""
@ -295,22 +294,21 @@ msgstr "Ajoute un nouvel élément avec la valeur *x* à la fin du tableau."
#: library/array.rst:114
msgid ""
"Return a tuple ``(address, length)`` giving the current memory address and "
"the length in elements of the buffer used to hold array's contents. The "
"size of the memory buffer in bytes can be computed as ``array.buffer_info()"
"[1] * array.itemsize``. This is occasionally useful when working with low-"
"level (and inherently unsafe) I/O interfaces that require memory addresses, "
"such as certain :c:func:`!ioctl` operations. The returned numbers are valid "
"as long as the array exists and no length-changing operations are applied to "
"it."
"the length in elements of the buffer used to hold array's contents. The size "
"of the memory buffer in bytes can be computed as ``array.buffer_info()[1] * "
"array.itemsize``. This is occasionally useful when working with low-level "
"(and inherently unsafe) I/O interfaces that require memory addresses, such as "
"certain :c:func:`!ioctl` operations. The returned numbers are valid as long "
"as the array exists and no length-changing operations are applied to it."
msgstr ""
"Renvoie un n-uplet ``(address, length)`` indiquant l'adresse mémoire courante "
"et la longueur en éléments du tampon utilisé pour contenir le contenu du "
"tableau. La taille du tampon mémoire en octets peut être calculée par "
"``array.buffer_info()[1] * array.itemsize``. Ceci est parfois utile lorsque "
"vous travaillez sur des interfaces E/S de bas niveau (et intrinsèquement "
"dangereuses) qui nécessitent des adresses mémoire, telles que certaines "
"opérations :c:func:`!ioctl`. Les nombres renvoyés sont valides tant que le "
"tableau existe et qu'aucune opération qui modifie sa taille ne lui est "
"Renvoie un *n*-uplet ``(address, length)`` indiquant l'adresse mémoire "
"courante et la longueur en éléments du tampon utilisé pour contenir le "
"contenu du tableau. La taille du tampon mémoire en octets peut être calculée "
"par ``array.buffer_info()[1] * array.itemsize``. Ceci est parfois utile "
"lorsque vous travaillez sur des interfaces E/S de bas niveau (et "
"intrinsèquement dangereuses) qui nécessitent des adresses mémoire, telles que "
"certaines opérations :c:func:`!ioctl`. Les nombres renvoyés sont valides tant "
"que le tableau existe et qu'aucune opération qui modifie sa taille ne lui est "
"appliquée."
#: library/array.rst:124
@ -321,24 +319,24 @@ msgid ""
"backward compatibility and should be avoided in new code. The buffer "
"interface is documented in :ref:`bufferobjects`."
msgstr ""
"Lors de l'utilisation d'objets tableaux provenant de codes écrits en C ou C+"
"+ (le seul moyen d'utiliser efficacement ces informations), il est plus "
"logique d'utiliser l'interface tampon supportée par les objets tableaux. "
"Cette méthode est maintenue pour des raisons de rétrocompatibilité et "
"devrait être évitée dans un nouveau code. L'interface tampon est documentée "
"dans :ref:`bufferobjects`."
"Lors de l'utilisation d'objets tableaux provenant de codes écrits en C ou C++ "
"(le seul moyen d'utiliser efficacement ces informations), il est plus logique "
"d'utiliser l'interface tampon supportée par les objets tableaux. Cette "
"méthode est maintenue pour des raisons de rétrocompatibilité et devrait être "
"évitée dans un nouveau code. L'interface tampon est documentée dans :ref:"
"`bufferobjects`."
#: library/array.rst:133
msgid ""
"\"Byteswap\" all items of the array. This is only supported for values "
"which are 1, 2, 4, or 8 bytes in size; for other types of values, :exc:"
"`RuntimeError` is raised. It is useful when reading data from a file "
"written on a machine with a different byte order."
"\"Byteswap\" all items of the array. This is only supported for values which "
"are 1, 2, 4, or 8 bytes in size; for other types of values, :exc:"
"`RuntimeError` is raised. It is useful when reading data from a file written "
"on a machine with a different byte order."
msgstr ""
"Boutisme de tous les éléments du tableau. Ceci n'est pris en charge que pour "
"les valeurs de 1, 2, 4 ou 8 octets ; pour les autres types de valeur, :exc:"
"`RuntimeError` est levée. Il est utile lors de la lecture de données à "
"partir d'un fichier écrit sur une machine avec un ordre d'octets différent."
"`RuntimeError` est levée. Il est utile lors de la lecture de données à partir "
"d'un fichier écrit sur une machine avec un ordre d'octets différent."
#: library/array.rst:141
msgid "Return the number of occurrences of *x* in the array."
@ -360,9 +358,8 @@ msgstr ""
#: library/array.rst:154
#, fuzzy
msgid ""
"Appends items from the string, interpreting the string as an array of "
"machine values (as if it had been read from a file using the :meth:"
"`fromfile` method)."
"Appends items from the string, interpreting the string as an array of machine "
"values (as if it had been read from a file using the :meth:`fromfile` method)."
msgstr ""
"Ajoute des éléments de la chaîne, interprétant la chaîne comme un tableau de "
"valeurs machine (comme si elle avait été lue depuis le fichier en utilisant "
@ -371,8 +368,7 @@ msgstr ""
#: library/array.rst:157
msgid ":meth:`!fromstring` is renamed to :meth:`frombytes` for clarity."
msgstr ""
":meth:`!fromstring` est renommée en :meth:`frombytes` pour plus de "
"lisibilité."
":meth:`!fromstring` est renommée en :meth:`frombytes` pour plus de lisibilité."
#: library/array.rst:163
msgid ""
@ -383,8 +379,8 @@ msgid ""
msgstr ""
"Lit *n* éléments (en tant que valeurs machine) du :term:`file object` *f* et "
"les ajouter à la fin du tableau. Si moins de *n* éléments sont disponibles, :"
"exc:`EOFError` est levée, mais les éléments qui étaient disponibles sont "
"tout de même insérés dans le tableau. *f* doit être un objet fichier natif ; "
"exc:`EOFError` est levée, mais les éléments qui étaient disponibles sont tout "
"de même insérés dans le tableau. *f* doit être un objet fichier natif ; "
"quelque chose d'autre avec une méthode :meth:`read` ne suffit pas."
#: library/array.rst:171
@ -409,10 +405,10 @@ msgstr ""
#: library/array.rst:185
msgid ""
"Return the smallest *i* such that *i* is the index of the first occurrence "
"of *x* in the array. The optional arguments *start* and *stop* can be "
"specified to search for *x* within a subsection of the array. Raise :exc:"
"`ValueError` if *x* is not found."
"Return the smallest *i* such that *i* is the index of the first occurrence of "
"*x* in the array. The optional arguments *start* and *stop* can be specified "
"to search for *x* within a subsection of the array. Raise :exc:`ValueError` "
"if *x* is not found."
msgstr ""
"Renvoie le plus petit *i* tel que *i* est l'indice de la première occurrence "
"de *x* dans le tableau. Les arguments optionnels *start* et *stop* peuvent "
@ -428,9 +424,8 @@ msgid ""
"Insert a new item with value *x* in the array before position *i*. Negative "
"values are treated as being relative to the end of the array."
msgstr ""
"Ajoute un nouvel élément avec la valeur *x* dans le tableau avant la "
"position *i*. Les valeurs négatives sont traitées relativement à la fin du "
"tableau."
"Ajoute un nouvel élément avec la valeur *x* dans le tableau avant la position "
"*i*. Les valeurs négatives sont traitées relativement à la fin du tableau."
#: library/array.rst:202
msgid ""
@ -439,8 +434,8 @@ msgid ""
"removed and returned."
msgstr ""
"Supprime l'élément du tableau avec l'index *i* et le renvoie. L'argument "
"optionnel par défaut est à ``-1``, de sorte que par défaut le dernier "
"élément est supprimé et renvoyé."
"optionnel par défaut est à ``-1``, de sorte que par défaut le dernier élément "
"est supprimé et renvoyé."
#: library/array.rst:209
msgid "Remove the first occurrence of *x* from the array."
@ -453,8 +448,8 @@ msgstr "Inverse l'ordre des éléments du tableau."
#: library/array.rst:219
msgid ""
"Convert the array to an array of machine values and return the bytes "
"representation (the same sequence of bytes that would be written to a file "
"by the :meth:`tofile` method.)"
"representation (the same sequence of bytes that would be written to a file by "
"the :meth:`tofile` method.)"
msgstr ""
"Convertit le tableau en un tableau de valeurs machine et renvoie la "
"représentation en octets (la même séquence d'octets qui serait écrite par la "
@ -491,10 +486,10 @@ msgid ""
"When an array object is printed or converted to a string, it is represented "
"as ``array(typecode, initializer)``. The *initializer* is omitted if the "
"array is empty, otherwise it is a string if the *typecode* is ``'u'``, "
"otherwise it is a list of numbers. The string is guaranteed to be able to "
"be converted back to an array with the same type and value using :func:"
"`eval`, so long as the :class:`~array.array` class has been imported using "
"``from array import array``. Examples::"
"otherwise it is a list of numbers. The string is guaranteed to be able to be "
"converted back to an array with the same type and value using :func:`eval`, "
"so long as the :class:`~array.array` class has been imported using ``from "
"array import array``. Examples::"
msgstr ""
"Quand un objet tableau est affiché ou converti en chaîne, il est représenté "
"en tant que ``array(typecode, initializer)``. *initializer* est omis si le "
@ -542,8 +537,8 @@ msgstr "tableaux"
#~ "Les éléments de données et méthodes suivants sont également supportés :"
#~ msgid ""
#~ "Return the smallest *i* such that *i* is the index of the first "
#~ "occurrence of *x* in the array."
#~ "Return the smallest *i* such that *i* is the index of the first occurrence "
#~ "of *x* in the array."
#~ msgstr ""
#~ "Renvoie le plus petit *i* tel que *i* est l'index de la première "
#~ "occurrence de *x* dans le tableau."
@ -563,8 +558,8 @@ msgstr "tableaux"
#~ msgstr "Py_UNICODE"
#~ msgid ""
#~ "The ``'u'`` type code corresponds to Python's obsolete unicode character "
#~ "(:c:type:`Py_UNICODE` which is :c:type:`wchar_t`). Depending on the "
#~ "The ``'u'`` type code corresponds to Python's obsolete unicode character (:"
#~ "c:type:`Py_UNICODE` which is :c:type:`wchar_t`). Depending on the "
#~ "platform, it can be 16 bits or 32 bits."
#~ msgstr ""
#~ "Le code de type ``'u'`` correspond au type obsolète de Python caractère "
@ -572,8 +567,8 @@ msgstr "tableaux"
#~ "plateforme, il peut être 16 bits ou 32 bits."
#~ msgid ""
#~ "``'u'`` will be removed together with the rest of the :c:type:"
#~ "`Py_UNICODE` API."
#~ "``'u'`` will be removed together with the rest of the :c:type:`Py_UNICODE` "
#~ "API."
#~ msgstr "``'u'`` sera supprimé avec le reste de l'API :c:type:`Py_UNICODE`."
#~ msgid "Deprecated alias for :meth:`frombytes`."