1
0
Fork 0
python-docs-fr/library/imghdr.po

197 lines
4.1 KiB
Plaintext
Raw Permalink Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
2022-05-22 21:15:02 +00:00
"POT-Creation-Date: 2022-05-22 23:13+0200\n"
2016-10-30 09:46:26 +00:00
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/imghdr.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`imghdr` --- Determine the type of an image"
msgstr ""
2022-03-23 17:40:12 +00:00
#: library/imghdr.rst:8
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/imghdr.py`"
msgstr "**Code source :** :source:`Lib/imghdr.py`"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:13
msgid ""
"The :mod:`imghdr` module is deprecated (see :pep:`PEP 594 <594#imghdr>` for "
"details and alternatives)."
2022-03-23 17:40:12 +00:00
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:16
2016-10-30 09:46:26 +00:00
msgid ""
"The :mod:`imghdr` module determines the type of image contained in a file or "
"byte stream."
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:19
2020-02-14 10:18:53 +00:00
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid "The :mod:`imghdr` module defines the following function:"
msgstr "Le module :mod:`nis` définit les instructions suivantes :"
2016-10-30 09:46:26 +00:00
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:24
2016-10-30 09:46:26 +00:00
msgid ""
"Tests the image data contained in the file named by *file*, and returns a "
"string describing the image type. If optional *h* is provided, the *file* "
"argument is ignored and *h* is assumed to contain the byte stream to test."
2016-10-30 09:46:26 +00:00
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:28
2016-10-30 09:46:26 +00:00
msgid "Accepts a :term:`path-like object`."
2017-08-10 05:17:13 +00:00
msgstr "Accepte un :term:`path-like object`."
2016-10-30 09:46:26 +00:00
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:31
2016-10-30 09:46:26 +00:00
msgid ""
"The following image types are recognized, as listed below with the return "
"value from :func:`what`:"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:35
2016-10-30 09:46:26 +00:00
msgid "Value"
msgstr "Valeur"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:35
2016-10-30 09:46:26 +00:00
msgid "Image format"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:37
2016-10-30 09:46:26 +00:00
msgid "``'rgb'``"
msgstr "``'rgb'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:37
2016-10-30 09:46:26 +00:00
msgid "SGI ImgLib Files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:39
2016-10-30 09:46:26 +00:00
msgid "``'gif'``"
msgstr "``'gif'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:39
2016-10-30 09:46:26 +00:00
msgid "GIF 87a and 89a Files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:41
2016-10-30 09:46:26 +00:00
msgid "``'pbm'``"
msgstr "``'pbm'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:41
2016-10-30 09:46:26 +00:00
msgid "Portable Bitmap Files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:43
2016-10-30 09:46:26 +00:00
msgid "``'pgm'``"
msgstr "``'pgm'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:43
2016-10-30 09:46:26 +00:00
msgid "Portable Graymap Files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:45
2016-10-30 09:46:26 +00:00
msgid "``'ppm'``"
msgstr "``'ppm'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:45
2016-10-30 09:46:26 +00:00
msgid "Portable Pixmap Files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:47
2016-10-30 09:46:26 +00:00
msgid "``'tiff'``"
msgstr "``'tiff'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:47
2016-10-30 09:46:26 +00:00
msgid "TIFF Files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:49
2016-10-30 09:46:26 +00:00
msgid "``'rast'``"
msgstr "``'rast'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:49
2016-10-30 09:46:26 +00:00
msgid "Sun Raster Files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:51
2016-10-30 09:46:26 +00:00
msgid "``'xbm'``"
msgstr "``'xbm'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:51
2016-10-30 09:46:26 +00:00
msgid "X Bitmap Files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:53
2016-10-30 09:46:26 +00:00
msgid "``'jpeg'``"
msgstr "``'jpeg'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:53
2016-10-30 09:46:26 +00:00
msgid "JPEG data in JFIF or Exif formats"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:55
2016-10-30 09:46:26 +00:00
msgid "``'bmp'``"
msgstr "``'bmp'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:55
2016-10-30 09:46:26 +00:00
msgid "BMP files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:57
2016-10-30 09:46:26 +00:00
msgid "``'png'``"
msgstr "``'png'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:57
2016-10-30 09:46:26 +00:00
msgid "Portable Network Graphics"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:59
2016-10-30 09:46:26 +00:00
msgid "``'webp'``"
msgstr "``'webp'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:59
2016-10-30 09:46:26 +00:00
msgid "WebP files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:61
2016-10-30 09:46:26 +00:00
msgid "``'exr'``"
msgstr "``'exr'``"
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:61
2016-10-30 09:46:26 +00:00
msgid "OpenEXR Files"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:64
2016-10-30 09:46:26 +00:00
msgid "The *exr* and *webp* formats were added."
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:68
2016-10-30 09:46:26 +00:00
msgid ""
"You can extend the list of file types :mod:`imghdr` can recognize by "
"appending to this variable:"
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:74
2016-10-30 09:46:26 +00:00
msgid ""
"A list of functions performing the individual tests. Each function takes "
"two arguments: the byte-stream and an open file-like object. When :func:"
"`what` is called with a byte-stream, the file-like object will be ``None``."
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:78
2016-10-30 09:46:26 +00:00
msgid ""
"The test function should return a string describing the image type if the "
"test succeeded, or ``None`` if it failed."
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/imghdr.rst:81
2016-10-30 09:46:26 +00:00
msgid "Example::"
msgstr "Exemple ::"