From a09d2a1e4ece6dfa7a875301dbb1e2fcb05bde73 Mon Sep 17 00:00:00 2001 From: Mindiell <61205582+Mindiell@users.noreply.github.com> Date: Wed, 5 May 2021 15:09:45 +0200 Subject: [PATCH] Traduction de c-api/bytearray.po (#1624) Automerge of PR #1624 by @Mindiell --- c-api/bytearray.po | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/c-api/bytearray.po b/c-api/bytearray.po index 1e74d730..bdab1641 100644 --- a/c-api/bytearray.po +++ b/c-api/bytearray.po @@ -6,13 +6,14 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-01-27 19:26+0100\n" -"PO-Revision-Date: 2018-10-04 12:21+0200\n" -"Last-Translator: Julien Palard \n" +"PO-Revision-Date: 2021-05-05 14:32+0200\n" +"Last-Translator: Mindiell \n" "Language-Team: FRENCH \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 2.2.1\n" #: c-api/bytearray.rst:6 msgid "Byte Array Objects" @@ -37,22 +38,20 @@ msgid "Type check macros" msgstr "Macros de vérification de type" #: c-api/bytearray.rst:27 -#, fuzzy msgid "" "Return true if the object *o* is a bytearray object or an instance of a " "subtype of the bytearray type. This function always succeeds." msgstr "" "Renvoie vrai si l'objet *o* est un ``bytearray`` ou une instance d'un sous-" -"type du type ``bytearray``." +"type du type ``bytearray``. Cette méthode réussit toujours." #: c-api/bytearray.rst:33 -#, fuzzy msgid "" "Return true if the object *o* is a bytearray object, but not an instance of " "a subtype of the bytearray type. This function always succeeds." msgstr "" "Renvoie vrai si l'objet *o* est un ``bytearray``, mais pas une instance d'un " -"sous-type du type ``bytearray``." +"sous-type du type ``bytearray``. Cette méthode réussit toujours." #: c-api/bytearray.rst:38 msgid "Direct API functions" @@ -67,13 +66,12 @@ msgstr "" "implémente le :ref:`protocole buffer `." #: c-api/bytearray.rst:50 -#, fuzzy msgid "" "Create a new bytearray object from *string* and its length, *len*. On " "failure, ``NULL`` is returned." msgstr "" "Crée un nouvel objet ``bytearray`` à partir d'un objet *string* et de sa " -"longueur, *len*. En cas d'échec, *NULL* est renvoyé." +"longueur, *len*. En cas d'échec, ``NULL`` est renvoyé." #: c-api/bytearray.rst:56 msgid "" @@ -83,21 +81,19 @@ msgstr "" "avec le résultat." #: c-api/bytearray.rst:61 -#, fuzzy msgid "Return the size of *bytearray* after checking for a ``NULL`` pointer." msgstr "" "Renvoie la taille de *bytearray* après vérification de la présence d'un " -"pointeur *NULL*." +"pointeur ``NULL``." #: c-api/bytearray.rst:66 -#, fuzzy msgid "" "Return the contents of *bytearray* as a char array after checking for a " "``NULL`` pointer. The returned array always has an extra null byte appended." msgstr "" "Renvoie le contenu de *bytearray* sous forme d'un tableau de caractères, en " -"vérifiant que ce n'est pas un pointeur *NULL*. Le tableau renvoyé se termine " -"toujours par un octet *null*." +"vérifiant que ce n'est pas un pointeur ``NULL``. Le tableau renvoyé a " +"toujours un caractère *null* rajouté." #: c-api/bytearray.rst:73 msgid "Resize the internal buffer of *bytearray* to *len*."