Skip to content

Commit 9fec963

Browse files
author
stevostean
committed
translate library/zlib.po (85%)
1 parent b00bfbf commit 9fec963

File tree

1 file changed

+51
-5
lines changed

1 file changed

+51
-5
lines changed

library/zlib.po

Lines changed: 51 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2017-08-10 00:49+0200\n"
11-
"PO-Revision-Date: 2018-01-10 09:37+0100\n"
11+
"PO-Revision-Date: 2018-01-10 10:06+0100\n"
1212
"MIME-Version: 1.0\n"
1313
"Content-Type: text/plain; charset=UTF-8\n"
1414
"Content-Transfer-Encoding: 8bit\n"
@@ -226,10 +226,16 @@ msgid ""
226226
"to occur frequently in the data that is to be compressed. Those subsequences "
227227
"that are expected to be most common should come at the end of the dictionary."
228228
msgstr ""
229+
"L'argument *zdict* est un dictionnaire de compression pré-défini. Il s'agit "
230+
"d'une séquence d'octets (tel qu'un objet :class:`bytes`) contenant des sous-"
231+
"séquences attendues régulièrement pour produire les données à compresser. "
232+
"Ces sous-séquences devraient se trouver en fin de dictionnaire."
229233

230234
#: ../Doc/library/zlib.rst:107
231235
msgid "Added the *zdict* parameter and keyword argument support."
232236
msgstr ""
237+
"Ajout du support de prise en charge du paramètre *zdict* et de sa valeur en "
238+
"argument."
233239

234240
#: ../Doc/library/zlib.rst:117
235241
msgid ""
@@ -248,6 +254,9 @@ msgid ""
248254
"Always returns an unsigned value. To generate the same numeric value across "
249255
"all Python versions and platforms, use ``crc32(data) & 0xffffffff``."
250256
msgstr ""
257+
"Renvoie systématiquement une valeur non-signée. Pour obtenir la même valeur "
258+
"numérique sur n'importe quelle version de Python et plateforme, utilisez "
259+
"``crc32(data) & 0xffffffff``."
251260

252261
#: ../Doc/library/zlib.rst:134
253262
msgid ""
@@ -257,43 +266,63 @@ msgid ""
257266
"initial size of the output buffer. Raises the :exc:`error` exception if any "
258267
"error occurs."
259268
msgstr ""
269+
"Décompresse les octets dans *données*, en renvoyant un objet contenant les "
270+
"données non-compressées. Le paramètre *wbits* dépend du format des "
271+
"*données*, et est discuté plus loin. Si l'argument *tailleTampon* est "
272+
"défini, il est utilisé comme taille initiale du tampon de sortie. En cas "
273+
"d'erreur, l'exception: exc: `erreur` est levée."
260274

261275
#: ../Doc/library/zlib.rst:142
262276
msgid ""
263277
"The *wbits* parameter controls the size of the history buffer (or \"window "
264278
"size\"), and what header and trailer format is expected. It is similar to "
265279
"the parameter for :func:`compressobj`, but accepts more ranges of values:"
266280
msgstr ""
281+
"Le paramètre *wbits* contrôle la dimension du tampon, et quel en-tête et "
282+
"bloc sont attendus. Similaire au paramètre pour : func: `compressobj`, mais "
283+
"accepte davantage de valeurs:"
267284

268285
#: ../Doc/library/zlib.rst:147
269286
msgid ""
270287
"+8 to +15: The base-two logarithm of the window size. The input must "
271288
"include a zlib header and trailer."
272289
msgstr ""
290+
"De +8 à +15 : Logarithme binaire à base 2 pour la dimension du tampon. "
291+
"L'entrée doit contenir un en-tête et un bloc zlib."
273292

274293
#: ../Doc/library/zlib.rst:150
275294
msgid ""
276295
"0: Automatically determine the window size from the zlib header. Only "
277296
"supported since zlib 1.2.3.5."
278297
msgstr ""
298+
"0: Détermine automatiquement la dimension du tampon à partir de l'en-tête "
299+
"zlib. Supporté uniquement depuis zlib 1.2.3.5."
279300

280301
#: ../Doc/library/zlib.rst:153
281302
msgid ""
282303
"−8 to −15: Uses the absolute value of *wbits* as the window size logarithm. "
283304
"The input must be a raw stream with no header or trailer."
284305
msgstr ""
306+
"De -8 à -15 : Utilise la valeur absolue de *wbits* comme logarithme pour la "
307+
"dimension du tampon. L'entrée doit être un flux brut, sans en-tête ni bloc."
285308

286309
#: ../Doc/library/zlib.rst:156
287310
msgid ""
288311
"+24 to +31 = 16 + (8 to 15): Uses the low 4 bits of the value as the window "
289312
"size logarithm. The input must include a gzip header and trailer."
290313
msgstr ""
314+
"De +24 à +31 = 16 + (8 à 15) : Utilise les 4 bitsles plus faibles de la "
315+
"valeur comme logarithme de dimension du tampon. L'entrée doit contenir un "
316+
"en-tête gzip et son bloc."
291317

292318
#: ../Doc/library/zlib.rst:160
293319
msgid ""
294320
"+40 to +47 = 32 + (8 to 15): Uses the low 4 bits of the value as the window "
295321
"size logarithm, and automatically accepts either the zlib or gzip format."
296322
msgstr ""
323+
"De +40 à +47 = 32 + (8 à 15) : Utilise les 4 bits les plus faibles de la "
324+
"valeur comme logarithme de dimension du tampon, et accepte automatiquement "
325+
"les formats zlib ou gzip."
297326

298327
#: ../Doc/library/zlib.rst:164
299328
msgid ""
@@ -303,6 +332,11 @@ msgid ""
303332
"to the largest window size and requires a zlib header and trailer to be "
304333
"included."
305334
msgstr ""
335+
"Lors de la décompression d'un flux, la dimension du tampon ne doit pas être "
336+
"inférieure à sa taille initialement utilisée pour compresser le flux. "
337+
"L'utilisation d'une valeur trop petite peut déclencher une exception: exc: "
338+
"`error`. La valeur par défaut *wbits* correspond àune dimension élevée du "
339+
"tampon et nécessite d'y adjoindre un en-tête zlib et son bloc."
306340

307341
#: ../Doc/library/zlib.rst:170
308342
msgid ""
@@ -311,10 +345,17 @@ msgid ""
311345
"you don't have to get this value exactly right; tuning it will only save a "
312346
"few calls to :c:func:`malloc`."
313347
msgstr ""
348+
"L'argument *tailleTampon* correspond à la dimension initiale du tampon "
349+
"utilisé pour contenir les données décompressées. Pour une espace plus grand, "
350+
"la taille du tampon sera augmentée au besoin, donc vous n'avez pas besoin de "
351+
"connaître sa valeur exacte. Son réglage n'effectuera que quelques appels à "
352+
"la fonction :c:func:`malloc`."
314353

315354
#: ../Doc/library/zlib.rst:175
316355
msgid "*wbits* and *bufsize* can be used as keyword arguments."
317356
msgstr ""
357+
"Les paramètres *wbits* et *tailleTampon* peuvent être utilisés comme "
358+
"arguments clés."
318359

319360
#: ../Doc/library/zlib.rst:180
320361
msgid ""
@@ -345,11 +386,11 @@ msgstr ""
345386

346387
#: ../Doc/library/zlib.rst:197
347388
msgid "Added the *zdict* parameter."
348-
msgstr ""
389+
msgstr "Ajout du paramètre *zdict*."
349390

350391
#: ../Doc/library/zlib.rst:201
351392
msgid "Compression objects support the following methods:"
352-
msgstr ""
393+
msgstr "Les objets de compression supportent les méthodes suivantes :"
353394

354395
#: ../Doc/library/zlib.rst:206
355396
msgid ""
@@ -377,10 +418,15 @@ msgid ""
377418
"Returns a copy of the compression object. This can be used to efficiently "
378419
"compress a set of data that share a common initial prefix."
379420
msgstr ""
421+
"Renvoie une copie de l'objet de compression. Il peut être exploité pour "
422+
"compresser efficacement un ensemble de données qui partagent un préfixe "
423+
"initial commun."
380424

381425
#: ../Doc/library/zlib.rst:231
382426
msgid "Decompression objects support the following methods and attributes:"
383427
msgstr ""
428+
"Les objets de décompression prennent en charge les méthodes et attributs "
429+
"suivants :"
384430

385431
#: ../Doc/library/zlib.rst:236
386432
msgid ""
@@ -511,7 +557,7 @@ msgstr "Module :mod:`gzip`"
511557

512558
#: ../Doc/library/zlib.rst:319
513559
msgid "Reading and writing :program:`gzip`\\ -format files."
514-
msgstr "lire et écrire desfichiers au format :program:`gzip`."
560+
msgstr "Lire et écrire des fichiers au format :program:`gzip`."
515561

516562
#: ../Doc/library/zlib.rst:322
517563
msgid "http://www.zlib.net"
@@ -530,5 +576,5 @@ msgid ""
530576
"The zlib manual explains the semantics and usage of the library's many "
531577
"functions."
532578
msgstr ""
533-
"Lemanuel zlib fournit les sémantiques et usages des nombreuses fonction de "
579+
"Le manuel zlib fournit les sémantiques et usages des nombreuses fonction de "
534580
"la librairie."

0 commit comments

Comments
 (0)