python-docs-fr/library/colorsys.po

77 lines
2.4 KiB
Plaintext
Raw Normal View History

2016-10-30 09:46:26 +00:00
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2016, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
2017-04-02 20:14:06 +00:00
"POT-Creation-Date: 2017-04-02 22:11+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"
"Language-Team: LANGUAGE <LL@li.org>\n"
2017-04-02 20:14:06 +00:00
"Language: \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"
#: ../Doc/library/colorsys.rst:2
msgid ":mod:`colorsys` --- Conversions between color systems"
msgstr ""
#: ../Doc/library/colorsys.rst:9
msgid "**Source code:** :source:`Lib/colorsys.py`"
msgstr "**Code source :** :source:`Lib/colorsys.py`"
#: ../Doc/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 ""
#: ../Doc/library/colorsys.rst:23
msgid ""
"More information about color spaces can be found at http://www.poynton.com/"
"ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces."
"htm."
msgstr ""
#: ../Doc/library/colorsys.rst:27
msgid "The :mod:`colorsys` module defines the following functions:"
msgstr ""
#: ../Doc/library/colorsys.rst:32
msgid "Convert the color from RGB coordinates to YIQ coordinates."
msgstr ""
#: ../Doc/library/colorsys.rst:37
msgid "Convert the color from YIQ coordinates to RGB coordinates."
msgstr ""
#: ../Doc/library/colorsys.rst:42
msgid "Convert the color from RGB coordinates to HLS coordinates."
msgstr ""
#: ../Doc/library/colorsys.rst:47
msgid "Convert the color from HLS coordinates to RGB coordinates."
msgstr ""
#: ../Doc/library/colorsys.rst:52
msgid "Convert the color from RGB coordinates to HSV coordinates."
msgstr ""
#: ../Doc/library/colorsys.rst:57
msgid "Convert the color from HSV coordinates to RGB coordinates."
msgstr ""
#: ../Doc/library/colorsys.rst:59
msgid "Example::"
msgstr "Exemples ::"