From 4517d9e9345d99a264ef119bdb07fd041a81b713 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 1 Nov 2021 17:30:50 -0400 Subject: [PATCH 01/22] to 31% --- library/audioop.po | 42 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 490b93f3c..106665002 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,17 +6,18 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2021-11-01 17:30-0400\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" +"Last-Translator: Edith Viau \n" +"X-Generator: Poedit 2.3\n" #: library/audioop.rst:2 msgid ":mod:`audioop` --- Manipulate raw audio data" -msgstr ":mod:`audioloop` — Manipulation de données audio brutes" +msgstr ":mod:`audioop` — Manipulation de données audio brutes" #: library/audioop.rst:9 msgid "" @@ -26,12 +27,20 @@ msgid "" "`. All scalar items are integers, unless specified " "otherwise." msgstr "" +"Le module :mod:`audioop` permet d'effectuer des opérations utiles sur des " +"fragments sonores. Ce module agit sur des fragments sonores qui sont des " +"échantillons audios - des entiers signés - de 8, 16, 24 ou 32 bits de large, " +"sauvegardés dans des :term:`objets octet-compatibles `. " +"Tous les items scalaires sont des entiers, sauf mention particulière." #: library/audioop.rst:14 msgid "" "Support for 24-bit samples was added. All functions now accept any :term:" "`bytes-like object`. String input now results in an immediate error." msgstr "" +"Le support pour pour les échantillons 24-bits a été ajouté. Toutes les " +"fonctions acceptent maintenant les :term:`objets octet-compatibles`. Une " +"chaîne de caractères reçue en entrée donne maintenant une erreur immédiate." #: library/audioop.rst:25 msgid "" @@ -43,16 +52,21 @@ msgid "" "A few of the more complicated operations only take 16-bit samples, otherwise " "the sample size (in bytes) is always a parameter of the operation." msgstr "" +"Mis-à-part pour quelques opérations plus complexes qui ne prennent que des " +"échantillons de 16 bits, la taille de l'échantillon (en octets) est toujours " +"un paramètre de l'opération." #: library/audioop.rst:32 msgid "The module defines the following variables and functions:" -msgstr "" +msgstr "Le module définit les fonctions et variables suivantes :" #: library/audioop.rst:37 msgid "" "This exception is raised on all errors, such as unknown number of bytes per " "sample, etc." msgstr "" +"Cette exception est levée sur toutes les erreurs, comme un nombre inconnu " +"d'octets par échantillon, etc." #: library/audioop.rst:43 msgid "" @@ -61,6 +75,10 @@ msgid "" "or ``4``. Both fragments should have the same length. Samples are " "truncated in case of overflow." msgstr "" +"Renvoie un fragment constitué de l'addition des deux échantillons fournis " +"comme paramètres. *width* est la largeur de l'échantillon en octets, soit " +"``1``, ``2``, ``3`` ou ``4``. Les deux fragments doivent avoir la même " +"longueur. Les échantillons sont tronqués en cas de de débordement." #: library/audioop.rst:50 msgid "" @@ -78,7 +96,7 @@ msgstr "" #: library/audioop.rst:64 msgid "Return the average over all samples in the fragment." -msgstr "" +msgstr "Renvoie la moyenne prise sur l'ensemble des échantillons du fragment." #: library/audioop.rst:69 msgid "" @@ -91,6 +109,9 @@ msgid "" "Return a fragment that is the original fragment with a bias added to each " "sample. Samples wrap around in case of overflow." msgstr "" +"Renvoie un fragment créé en ajoutant un biais à chaque échantillon du " +"fragment d'origine. Les échantillons s'enroule autour dans le cas de " +"débordement." #: library/audioop.rst:81 msgid "" @@ -114,6 +135,7 @@ msgstr "" #: library/audioop.rst:99 msgid "The time taken by this routine is proportional to ``len(fragment)``." msgstr "" +"Le temps écoulé par cette routine est proportionnel à ``len(fragment)``." #: library/audioop.rst:104 msgid "" @@ -169,7 +191,7 @@ msgstr "" #: library/audioop.rst:150 msgid "Convert samples between 1-, 2-, 3- and 4-byte formats." -msgstr "" +msgstr "Transforme des échantillons pour les formats 1-, 2-, 3-, et 4-octets." #: library/audioop.rst:154 msgid "" @@ -251,6 +273,9 @@ msgid "" "multiplied by *lfactor* and the right channel by *rfactor* before adding the " "two channels to give a mono signal." msgstr "" +"Transforme un fragment stéréo en fragment mono. Le canal de gauche est " +"multiplié par *lfactor* et le canal de droite par *rfactor* avant " +"d'additionner les deux canaux afin d'obtenir un signal mono." #: library/audioop.rst:228 msgid "" @@ -258,6 +283,11 @@ msgid "" "the stereo fragment are computed from the mono sample, whereby left channel " "samples are multiplied by *lfactor* and right channel samples by *rfactor*." msgstr "" +"Génère un fragment stéréo à partir d'un fragment mono. Chaque paire " +"d'échantillons dans le fragment stéréo est obtenue à partir de l'échantillon " +"mono de la façon suivante : les échantillons du canal de gauche sont " +"multipliés par *lfactor* et les échantillons du canal de droite, par " +"*rfactor*." #: library/audioop.rst:235 msgid "" From 1f80aba658fad4d6cf859b79e2ccf5ef80e68096 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 1 Nov 2021 18:59:59 -0400 Subject: [PATCH 02/22] =?UTF-8?q?jusqu'=C3=A0=2053%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/audioop.po | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 106665002..0b74f22d7 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-01 17:30-0400\n" +"PO-Revision-Date: 2021-11-01 18:59-0400\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -43,9 +43,12 @@ msgstr "" "chaîne de caractères reçue en entrée donne maintenant une erreur immédiate." #: library/audioop.rst:25 +#, fuzzy msgid "" "This module provides support for a-LAW, u-LAW and Intel/DVI ADPCM encodings." msgstr "" +"Ce module fournit du support pour la loi A, la loi u et les encodages Intel/" +"DVI ADPCM." #: library/audioop.rst:29 msgid "" @@ -157,11 +160,11 @@ msgstr "" #: library/audioop.rst:119 msgid "The routine takes time proportional to ``len(fragment)``." -msgstr "" +msgstr "La routine s'exécute en un temps proportionnel à ``len(fragment)``." #: library/audioop.rst:124 msgid "Return the value of sample *index* from the fragment." -msgstr "" +msgstr "Renvoie la valeur de l'échantillon *index* du fragment." #: library/audioop.rst:129 msgid "" @@ -205,6 +208,8 @@ msgid "" "The same, in reverse, has to be applied when converting from 8 to 16, 24 or " "32 bit width samples." msgstr "" +"Le même procédé, mais inversé, doit être suivi lorsqu'on exécute une " +"conversion d'échantillons de 8 bits à 16, 24 ou 32 bits." #: library/audioop.rst:167 msgid "" @@ -218,6 +223,7 @@ msgstr "" msgid "" "Return the maximum of the *absolute value* of all samples in a fragment." msgstr "" +"Renvoie la *valeur absolue* maximale de tous les échantillons du fragment." #: library/audioop.rst:180 msgid "Return the maximum peak-peak value in the sound fragment." @@ -228,6 +234,8 @@ msgid "" "Return a tuple consisting of the minimum and maximum values of all samples " "in the sound fragment." msgstr "" +"Renvoie un *n*-tuplet contenant les valeurs maximales et minimales de tous " +"les échantillons du fragment sonore." #: library/audioop.rst:191 msgid "" @@ -235,10 +243,13 @@ msgid "" "by the floating-point value *factor*. Samples are truncated in case of " "overflow." msgstr "" +"Renvoie un fragment contenant tous les échantillons du fragment original " +"multiplié par la valeur à virgule flottante *factor*. Les échantillons sont " +"tronqués en cas de débordement." #: library/audioop.rst:197 msgid "Convert the frame rate of the input fragment." -msgstr "" +msgstr "Transforme la cadence de prise de vue du fragment d'entrée." #: library/audioop.rst:199 msgid "" @@ -253,15 +264,21 @@ msgid "" "The *weightA* and *weightB* arguments are parameters for a simple digital " "filter and default to ``1`` and ``0`` respectively." msgstr "" +"Les arguments *weightA* et *weightB* sont les paramètres d'un filtre " +"numérique simple et ont comme valeur par défaut ``1`` et ``0``, " +"respectivement." #: library/audioop.rst:209 msgid "Reverse the samples in a fragment and returns the modified fragment." msgstr "" +"Inverse les échantillons dans un fragment et renvoie le fragment modifié." #: library/audioop.rst:214 msgid "" "Return the root-mean-square of the fragment, i.e. ``sqrt(sum(S_i^2)/n)``." msgstr "" +"Renvoie la moyenne quadratique du fragement, c'est-à-dire ``sqrt(sum(S_i^2)/" +"n)``." #: library/audioop.rst:216 msgid "This is a measure of the power in an audio signal." From 656da4f371f75ff49cb7492645124b7c381653c4 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 1 Nov 2021 19:04:58 -0400 Subject: [PATCH 03/22] fragement -> fragment --- library/audioop.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 0b74f22d7..67c5dbd6f 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-01 18:59-0400\n" +"PO-Revision-Date: 2021-11-01 19:04-0400\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -277,7 +277,7 @@ msgstr "" msgid "" "Return the root-mean-square of the fragment, i.e. ``sqrt(sum(S_i^2)/n)``." msgstr "" -"Renvoie la moyenne quadratique du fragement, c'est-à-dire ``sqrt(sum(S_i^2)/" +"Renvoie la moyenne quadratique du fragment, c'est-à-dire ``sqrt(sum(S_i^2)/" "n)``." #: library/audioop.rst:216 From 642adb48d9c1ce76090337dc1fd9ce75bf8444e0 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 1 Nov 2021 19:25:18 -0400 Subject: [PATCH 04/22] byte-like object: comment traduire le terme et avoir le lien vers le glossaire ? --- library/audioop.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 67c5dbd6f..090f1f326 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-01 19:04-0400\n" +"PO-Revision-Date: 2021-11-01 19:21-0400\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -30,8 +30,8 @@ msgstr "" "Le module :mod:`audioop` permet d'effectuer des opérations utiles sur des " "fragments sonores. Ce module agit sur des fragments sonores qui sont des " "échantillons audios - des entiers signés - de 8, 16, 24 ou 32 bits de large, " -"sauvegardés dans des :term:`objets octet-compatibles `. " -"Tous les items scalaires sont des entiers, sauf mention particulière." +"sauvegardés dans des :term:`bytes-like objects `. Tous " +"les items scalaires sont des entiers, sauf mention particulière." #: library/audioop.rst:14 msgid "" @@ -39,8 +39,9 @@ msgid "" "`bytes-like object`. String input now results in an immediate error." msgstr "" "Le support pour pour les échantillons 24-bits a été ajouté. Toutes les " -"fonctions acceptent maintenant les :term:`objets octet-compatibles`. Une " -"chaîne de caractères reçue en entrée donne maintenant une erreur immédiate." +"fonctions acceptent maintenant les :term:`bytes-like objects `. Une chaîne de caractères reçue en entrée donne maintenant une " +"erreur immédiate." #: library/audioop.rst:25 #, fuzzy From 8f03f9608b1d705d7dc68bb8d00c64dee623f22c Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 1 Nov 2021 20:25:36 -0400 Subject: [PATCH 05/22] ajustments bytes-like object - suite au commentaire --- library/audioop.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 090f1f326..acd6aa5aa 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-01 19:21-0400\n" +"PO-Revision-Date: 2021-11-01 20:24-0400\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -30,8 +30,8 @@ msgstr "" "Le module :mod:`audioop` permet d'effectuer des opérations utiles sur des " "fragments sonores. Ce module agit sur des fragments sonores qui sont des " "échantillons audios - des entiers signés - de 8, 16, 24 ou 32 bits de large, " -"sauvegardés dans des :term:`bytes-like objects `. Tous " -"les items scalaires sont des entiers, sauf mention particulière." +"sauvegardés dans des :term:`objets octet-compatibles `. " +"Tous les items scalaires sont des entiers, sauf mention particulière." #: library/audioop.rst:14 msgid "" @@ -39,8 +39,8 @@ msgid "" "`bytes-like object`. String input now results in an immediate error." msgstr "" "Le support pour pour les échantillons 24-bits a été ajouté. Toutes les " -"fonctions acceptent maintenant les :term:`bytes-like objects `. Une chaîne de caractères reçue en entrée donne maintenant une " +"fonctions acceptent maintenant les :term:`objets octet-compatibles `. Une chaîne de caractères reçue en entrée donne maintenant une " "erreur immédiate." #: library/audioop.rst:25 From a33e82011eb30d0947de2052c4ebda635f941273 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 18:53:10 -0500 Subject: [PATCH 06/22] commentaire 1/m --- library/audioop.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index acd6aa5aa..4345edebc 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-01 20:24-0400\n" +"PO-Revision-Date: 2021-11-15 18:52-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -28,10 +28,10 @@ msgid "" "otherwise." msgstr "" "Le module :mod:`audioop` permet d'effectuer des opérations utiles sur des " -"fragments sonores. Ce module agit sur des fragments sonores qui sont des " -"échantillons audios - des entiers signés - de 8, 16, 24 ou 32 bits de large, " -"sauvegardés dans des :term:`objets octet-compatibles `. " -"Tous les items scalaires sont des entiers, sauf mention particulière." +"fragments sonores. Ceux-ci sont constitués d'échantillons audio, suite " +"d'entiers signés de taille 8, 16, 24 ou 32 bits. Ils sont sauvegardés dans " +"des :term:`objets octet-compatibles `. Tous les nombres " +"sont des entiers, sauf mention particulière." #: library/audioop.rst:14 msgid "" From 72c630d2c21f7072995aca7573862bfd36d89f70 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 18:53:45 -0500 Subject: [PATCH 07/22] commentaire 2/m --- library/audioop.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 4345edebc..0274276c4 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 18:52-0500\n" +"PO-Revision-Date: 2021-11-15 18:53-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgid "" "Support for 24-bit samples was added. All functions now accept any :term:" "`bytes-like object`. String input now results in an immediate error." msgstr "" -"Le support pour pour les échantillons 24-bits a été ajouté. Toutes les " +"La prise en charge d'échantillons 24-bits a été ajoutée. Toutes les " "fonctions acceptent maintenant les :term:`objets octet-compatibles `. Une chaîne de caractères reçue en entrée donne maintenant une " "erreur immédiate." From 23e752793f4fe6eeb620f8f0efae670e9ed67ed4 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 18:54:50 -0500 Subject: [PATCH 08/22] commentaire 3/m --- library/audioop.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 0274276c4..49a4cddb8 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 18:53-0500\n" +"PO-Revision-Date: 2021-11-15 18:54-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgid "" "This exception is raised on all errors, such as unknown number of bytes per " "sample, etc." msgstr "" -"Cette exception est levée sur toutes les erreurs, comme un nombre inconnu " +"Cette exception est levée pour toutes les erreurs, comme un nombre inconnu " "d'octets par échantillon, etc." #: library/audioop.rst:43 From f2362be312820c4e4ca20b5f76867412a66e4654 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 18:55:13 -0500 Subject: [PATCH 09/22] commentaire 4/m --- library/audioop.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 49a4cddb8..641107559 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 18:54-0500\n" +"PO-Revision-Date: 2021-11-15 18:55-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "" "Renvoie un fragment constitué de l'addition des deux échantillons fournis " "comme paramètres. *width* est la largeur de l'échantillon en octets, soit " "``1``, ``2``, ``3`` ou ``4``. Les deux fragments doivent avoir la même " -"longueur. Les échantillons sont tronqués en cas de de débordement." +"longueur. Les échantillons sont tronqués en cas de débordement." #: library/audioop.rst:50 msgid "" From 8cb4b615f724a6d5f42ac0d0f7e9f944b799ef27 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 18:59:19 -0500 Subject: [PATCH 10/22] commentaire 5/m --- library/audioop.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 641107559..6cf06de97 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 18:55-0500\n" +"PO-Revision-Date: 2021-11-15 18:59-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -109,12 +109,13 @@ msgid "" msgstr "" #: library/audioop.rst:75 +#, fuzzy msgid "" "Return a fragment that is the original fragment with a bias added to each " "sample. Samples wrap around in case of overflow." msgstr "" "Renvoie un fragment créé en ajoutant un biais à chaque échantillon du " -"fragment d'origine. Les échantillons s'enroule autour dans le cas de " +"fragment d'origine. Les échantillons s'enroulent autour dans le cas de " "débordement." #: library/audioop.rst:81 From f2d5fb661604d037bebce302be18e0297194feff Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 18:59:52 -0500 Subject: [PATCH 11/22] commentaire 6/m --- library/audioop.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 6cf06de97..225e2ab61 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -139,8 +139,7 @@ msgstr "" #: library/audioop.rst:99 msgid "The time taken by this routine is proportional to ``len(fragment)``." -msgstr "" -"Le temps écoulé par cette routine est proportionnel à ``len(fragment)``." +msgstr "Le temps pris par cette routine est proportionnel à ``len(fragment)``." #: library/audioop.rst:104 msgid "" From 68a6be6a3d9b2ed5cd0af7fb727eef17f3dc014c Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:00:32 -0500 Subject: [PATCH 12/22] commentaire 7/m --- library/audioop.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 225e2ab61..1840d4477 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 18:59-0500\n" +"PO-Revision-Date: 2021-11-15 19:00-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -165,7 +165,8 @@ msgstr "La routine s'exécute en un temps proportionnel à ``len(fragment)``." #: library/audioop.rst:124 msgid "Return the value of sample *index* from the fragment." -msgstr "Renvoie la valeur de l'échantillon *index* du fragment." +msgstr "" +"Renvoie la valeur de l'échantillon à l'indice *index* dans le fragment." #: library/audioop.rst:129 msgid "" From 6822fac999b08a3b7ceb9ae693c114dc9473b29c Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:01:02 -0500 Subject: [PATCH 13/22] commentaire 8/m --- library/audioop.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/audioop.po b/library/audioop.po index 1840d4477..1281e27fc 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -196,7 +196,7 @@ msgstr "" #: library/audioop.rst:150 msgid "Convert samples between 1-, 2-, 3- and 4-byte formats." -msgstr "Transforme des échantillons pour les formats 1-, 2-, 3-, et 4-octets." +msgstr "Convertit des échantillons pour les formats à 1, 2, 3, et 4 octets." #: library/audioop.rst:154 msgid "" From e58becbe16487c85bc96c40279a24b9dd7608d92 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:01:27 -0500 Subject: [PATCH 14/22] commentaire 9/m --- library/audioop.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 1281e27fc..b303b063e 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 19:00-0500\n" +"PO-Revision-Date: 2021-11-15 19:01-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -236,8 +236,8 @@ msgid "" "Return a tuple consisting of the minimum and maximum values of all samples " "in the sound fragment." msgstr "" -"Renvoie un *n*-tuplet contenant les valeurs maximales et minimales de tous " -"les échantillons du fragment sonore." +"Renvoie un *n*-tuplet contenant les valeurs maximale et minimale de tous les " +"échantillons du fragment sonore." #: library/audioop.rst:191 msgid "" From 9cdc84f65c5b2422bb54819a8c7e22c6ba6207ec Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:02:11 -0500 Subject: [PATCH 15/22] commentaire 10/m --- library/audioop.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index b303b063e..afb9f1d2b 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 19:01-0500\n" +"PO-Revision-Date: 2021-11-15 19:02-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -246,8 +246,8 @@ msgid "" "overflow." msgstr "" "Renvoie un fragment contenant tous les échantillons du fragment original " -"multiplié par la valeur à virgule flottante *factor*. Les échantillons sont " -"tronqués en cas de débordement." +"multipliés par la valeur à décimale *factor*. Les échantillons sont tronqués " +"en cas de débordement." #: library/audioop.rst:197 msgid "Convert the frame rate of the input fragment." From aba62fa4d470fbeab51301c3d89b70b0493ff5db Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:02:52 -0500 Subject: [PATCH 16/22] commentaire 11/m --- library/audioop.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/audioop.po b/library/audioop.po index afb9f1d2b..6e8da88c4 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -251,7 +251,7 @@ msgstr "" #: library/audioop.rst:197 msgid "Convert the frame rate of the input fragment." -msgstr "Transforme la cadence de prise de vue du fragment d'entrée." +msgstr "Transforme la fréquence d'échantillonnage du fragment d'entrée." #: library/audioop.rst:199 msgid "" From 5c4795e85235baef51c606e4c4efffb92ebe09b7 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:03:55 -0500 Subject: [PATCH 17/22] commentaire 12/m --- library/audioop.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 6e8da88c4..2d2424c84 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 19:02-0500\n" +"PO-Revision-Date: 2021-11-15 19:03-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -38,9 +38,9 @@ msgid "" "Support for 24-bit samples was added. All functions now accept any :term:" "`bytes-like object`. String input now results in an immediate error." msgstr "" -"La prise en charge d'échantillons 24-bits a été ajoutée. Toutes les " -"fonctions acceptent maintenant les :term:`objets octet-compatibles `. Une chaîne de caractères reçue en entrée donne maintenant une " +"Ajout de la prise en charge d'échantillons 24-bits. Toutes les fonctions " +"acceptent maintenant les :term:`objets octet-compatibles `. Une chaîne de caractères reçue en entrée donne maintenant une " "erreur immédiate." #: library/audioop.rst:25 From d336160cb581f69d8a2c9a517e7010d5287cb55d Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:04:09 -0500 Subject: [PATCH 18/22] commentaire 13/m --- library/audioop.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 2d2424c84..1e0134eac 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 19:03-0500\n" +"PO-Revision-Date: 2021-11-15 19:04-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgid "" "Support for 24-bit samples was added. All functions now accept any :term:" "`bytes-like object`. String input now results in an immediate error." msgstr "" -"Ajout de la prise en charge d'échantillons 24-bits. Toutes les fonctions " +"Ajout de la prise en charge d'échantillons 24 bits. Toutes les fonctions " "acceptent maintenant les :term:`objets octet-compatibles `. Une chaîne de caractères reçue en entrée donne maintenant une " "erreur immédiate." From 887d7104e266baf2c4b1868a3d755f6ea44798a4 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:04:42 -0500 Subject: [PATCH 19/22] commentaire 14/m --- library/audioop.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 1e0134eac..d99ce2a5a 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -40,8 +40,8 @@ msgid "" msgstr "" "Ajout de la prise en charge d'échantillons 24 bits. Toutes les fonctions " "acceptent maintenant les :term:`objets octet-compatibles `. Une chaîne de caractères reçue en entrée donne maintenant une " -"erreur immédiate." +"object>`. Une chaîne de caractères reçue en entrée lève immédiatement une " +"erreur." #: library/audioop.rst:25 #, fuzzy From ea90cb64aea8f5a931f360f4d38a2a94fe1e4314 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:05:18 -0500 Subject: [PATCH 20/22] commentaire 15/m --- library/audioop.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index d99ce2a5a..7a3bb7204 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 19:04-0500\n" +"PO-Revision-Date: 2021-11-15 19:05-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -44,12 +44,11 @@ msgstr "" "erreur." #: library/audioop.rst:25 -#, fuzzy msgid "" "This module provides support for a-LAW, u-LAW and Intel/DVI ADPCM encodings." msgstr "" -"Ce module fournit du support pour la loi A, la loi u et les encodages Intel/" -"DVI ADPCM." +"Ce module prend en charge les encodages de la loi A, de la loi u et les " +"encodages Intel/DVI ADPCM." #: library/audioop.rst:29 msgid "" From b91ab40407d4ec76f260e11d0acf656ca8a63689 Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:06:07 -0500 Subject: [PATCH 21/22] commentaire 16/m --- library/audioop.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/audioop.po b/library/audioop.po index 7a3bb7204..b378e3ae1 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" -"PO-Revision-Date: 2021-11-15 19:05-0500\n" +"PO-Revision-Date: 2021-11-15 19:06-0500\n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgid "" "A few of the more complicated operations only take 16-bit samples, otherwise " "the sample size (in bytes) is always a parameter of the operation." msgstr "" -"Mis-à-part pour quelques opérations plus complexes qui ne prennent que des " +"Mis à part quelques opérations plus complexes ne prenant que des " "échantillons de 16 bits, la taille de l'échantillon (en octets) est toujours " "un paramètre de l'opération." From 33d7dac1f2880eb985793e1c63e028d68188d6fb Mon Sep 17 00:00:00 2001 From: eviau <37245459+eviau@users.noreply.github.com> Date: Mon, 15 Nov 2021 19:06:25 -0500 Subject: [PATCH 22/22] commentaire 17/m --- library/audioop.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/audioop.po b/library/audioop.po index b378e3ae1..4b0901570 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -235,7 +235,7 @@ msgid "" "Return a tuple consisting of the minimum and maximum values of all samples " "in the sound fragment." msgstr "" -"Renvoie un *n*-tuplet contenant les valeurs maximale et minimale de tous les " +"Renvoie un *n*-uplet contenant les valeurs maximale et minimale de tous les " "échantillons du fragment sonore." #: library/audioop.rst:191