@@ -8,7 +8,7 @@ msgstr ""
8
8
"Project-Id-Version : Python 3.6\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
10
"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 "
12
12
"MIME-Version : 1.0\n "
13
13
"Content-Type : text/plain; charset=UTF-8\n "
14
14
"Content-Transfer-Encoding : 8bit\n "
@@ -226,10 +226,16 @@ msgid ""
226
226
"to occur frequently in the data that is to be compressed. Those subsequences "
227
227
"that are expected to be most common should come at the end of the dictionary."
228
228
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."
229
233
230
234
#: ../Doc/library/zlib.rst:107
231
235
msgid "Added the *zdict* parameter and keyword argument support."
232
236
msgstr ""
237
+ "Ajout du support de prise en charge du paramètre *zdict* et de sa valeur en "
238
+ "argument."
233
239
234
240
#: ../Doc/library/zlib.rst:117
235
241
msgid ""
@@ -248,6 +254,9 @@ msgid ""
248
254
"Always returns an unsigned value. To generate the same numeric value across "
249
255
"all Python versions and platforms, use ``crc32(data) & 0xffffffff``."
250
256
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``."
251
260
252
261
#: ../Doc/library/zlib.rst:134
253
262
msgid ""
@@ -257,43 +266,63 @@ msgid ""
257
266
"initial size of the output buffer. Raises the :exc:`error` exception if any "
258
267
"error occurs."
259
268
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."
260
274
261
275
#: ../Doc/library/zlib.rst:142
262
276
msgid ""
263
277
"The *wbits* parameter controls the size of the history buffer (or \" window "
264
278
"size\" ), and what header and trailer format is expected. It is similar to "
265
279
"the parameter for :func:`compressobj`, but accepts more ranges of values:"
266
280
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:"
267
284
268
285
#: ../Doc/library/zlib.rst:147
269
286
msgid ""
270
287
"+8 to +15: The base-two logarithm of the window size. The input must "
271
288
"include a zlib header and trailer."
272
289
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."
273
292
274
293
#: ../Doc/library/zlib.rst:150
275
294
msgid ""
276
295
"0: Automatically determine the window size from the zlib header. Only "
277
296
"supported since zlib 1.2.3.5."
278
297
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."
279
300
280
301
#: ../Doc/library/zlib.rst:153
281
302
msgid ""
282
303
"−8 to −15: Uses the absolute value of *wbits* as the window size logarithm. "
283
304
"The input must be a raw stream with no header or trailer."
284
305
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."
285
308
286
309
#: ../Doc/library/zlib.rst:156
287
310
msgid ""
288
311
"+24 to +31 = 16 + (8 to 15): Uses the low 4 bits of the value as the window "
289
312
"size logarithm. The input must include a gzip header and trailer."
290
313
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."
291
317
292
318
#: ../Doc/library/zlib.rst:160
293
319
msgid ""
294
320
"+40 to +47 = 32 + (8 to 15): Uses the low 4 bits of the value as the window "
295
321
"size logarithm, and automatically accepts either the zlib or gzip format."
296
322
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."
297
326
298
327
#: ../Doc/library/zlib.rst:164
299
328
msgid ""
@@ -303,6 +332,11 @@ msgid ""
303
332
"to the largest window size and requires a zlib header and trailer to be "
304
333
"included."
305
334
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."
306
340
307
341
#: ../Doc/library/zlib.rst:170
308
342
msgid ""
@@ -311,10 +345,17 @@ msgid ""
311
345
"you don't have to get this value exactly right; tuning it will only save a "
312
346
"few calls to :c:func:`malloc`."
313
347
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`."
314
353
315
354
#: ../Doc/library/zlib.rst:175
316
355
msgid "*wbits* and *bufsize* can be used as keyword arguments."
317
356
msgstr ""
357
+ "Les paramètres *wbits* et *tailleTampon* peuvent être utilisés comme "
358
+ "arguments clés."
318
359
319
360
#: ../Doc/library/zlib.rst:180
320
361
msgid ""
@@ -345,11 +386,11 @@ msgstr ""
345
386
346
387
#: ../Doc/library/zlib.rst:197
347
388
msgid "Added the *zdict* parameter."
348
- msgstr ""
389
+ msgstr "Ajout du paramètre *zdict*. "
349
390
350
391
#: ../Doc/library/zlib.rst:201
351
392
msgid "Compression objects support the following methods:"
352
- msgstr ""
393
+ msgstr "Les objets de compression supportent les méthodes suivantes : "
353
394
354
395
#: ../Doc/library/zlib.rst:206
355
396
msgid ""
@@ -377,10 +418,15 @@ msgid ""
377
418
"Returns a copy of the compression object. This can be used to efficiently "
378
419
"compress a set of data that share a common initial prefix."
379
420
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."
380
424
381
425
#: ../Doc/library/zlib.rst:231
382
426
msgid "Decompression objects support the following methods and attributes:"
383
427
msgstr ""
428
+ "Les objets de décompression prennent en charge les méthodes et attributs "
429
+ "suivants :"
384
430
385
431
#: ../Doc/library/zlib.rst:236
386
432
msgid ""
@@ -511,7 +557,7 @@ msgstr "Module :mod:`gzip`"
511
557
512
558
#: ../Doc/library/zlib.rst:319
513
559
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`."
515
561
516
562
#: ../Doc/library/zlib.rst:322
517
563
msgid "http://www.zlib.net"
@@ -530,5 +576,5 @@ msgid ""
530
576
"The zlib manual explains the semantics and usage of the library's many "
531
577
"functions."
532
578
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 "
534
580
"la librairie."
0 commit comments