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

97 lines
3.7 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
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: 2020-09-25 17:03-0600\n"
"Last-Translator: Yannick Gingras <ygingras@ygingras.net>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\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.3\n"
#: library/colorsys.rst:2
msgid ":mod:`colorsys` --- Conversions between color systems"
msgstr ":mod:`colorsys` — Conversions entre les systèmes de couleurs"
#: library/colorsys.rst:9
msgid "**Source code:** :source:`Lib/colorsys.py`"
msgstr "**Code source :** :source:`Lib/colorsys.py`"
#: library/colorsys.rst:13
msgid ""
"The :mod:`colorsys` module defines bidirectional conversions of color values "
"between colors expressed in the RGB (Red Green Blue) color space used in "
"computer monitors and three other coordinate systems: YIQ, HLS (Hue "
"Lightness Saturation) and HSV (Hue Saturation Value). Coordinates in all of "
"these color spaces are floating point values. In the YIQ space, the Y "
"coordinate is between 0 and 1, but the I and Q coordinates can be positive "
"or negative. In all other spaces, the coordinates are all between 0 and 1."
msgstr ""
"Le module :mod:`colorsys` définit les conversions bidirectionnelles des "
"valeurs de couleur entre les couleurs exprimées dans l'espace colorimétrique "
"RVB (Rouge Vert Bleu) utilisé par les écrans d'ordinateur et trois autres "
"systèmes de coordonnées : YIQ, HLS (Hue Lightness Saturation) et HSV (Hue "
"Saturation Value). Les coordonnées dans tous ces espaces colorimétriques "
"sont des valeurs en virgule flottante. Dans l'espace YIQ, la coordonnée Y "
"est comprise entre 0 et 1, mais les coordonnées I et Q peuvent être "
"positives ou négatives. Dans tous les autres espaces, les coordonnées sont "
"toutes comprises entre 0 et 1."
#: library/colorsys.rst:23
msgid ""
"More information about color spaces can be found at https://poynton.ca/"
"ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces."
"htm."
msgstr ""
"Consultez https://poynton.ca/ColorFAQ.html et https://www.cambridgeincolour."
"com/tutorials/color-spaces.htm pour plus d'informations concernant les "
"espaces colorimétriques."
#: library/colorsys.rst:27
msgid "The :mod:`colorsys` module defines the following functions:"
msgstr "Le module :mod:`colorsys` définit les fonctions suivantes :"
#: library/colorsys.rst:32
msgid "Convert the color from RGB coordinates to YIQ coordinates."
msgstr ""
"Convertit la couleur des coordonnées RGB (RVB) vers les coordonnées YIQ."
#: library/colorsys.rst:37
msgid "Convert the color from YIQ coordinates to RGB coordinates."
msgstr ""
"Convertit la couleur des coordonnées YIQ vers les coordonnées RGB (RVB)."
#: library/colorsys.rst:42
msgid "Convert the color from RGB coordinates to HLS coordinates."
msgstr ""
"Convertit la couleur des coordonnées RGB (RVB) vers les coordonnées HLS "
"(TSV)."
#: library/colorsys.rst:47
msgid "Convert the color from HLS coordinates to RGB coordinates."
msgstr ""
"Convertit la couleur des coordonnées HLS (TSV) vers les coordonnées RGB "
"(RVB)."
#: library/colorsys.rst:52
msgid "Convert the color from RGB coordinates to HSV coordinates."
msgstr ""
"Convertit la couleur des coordonnées RGB (RVB) vers les coordonnées HSV "
"(TSV)."
#: library/colorsys.rst:57
msgid "Convert the color from HSV coordinates to RGB coordinates."
msgstr ""
"Convertit la couleur des coordonnées HSV (TSV) vers les coordonnées RGB "
"(RVB)."
#: library/colorsys.rst:59
msgid "Example::"
msgstr "Exemple ::"