Translate library/colorsys.po

This commit is contained in:
Fred Z 2018-01-09 22:15:06 +01:00 committed by Julien Palard
parent f21753a9fa
commit c7d71d9d8a

View File

@ -3,23 +3,23 @@
# This file is distributed under the same license as the Python package. # This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# #
#, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n" "POT-Creation-Date: 2017-04-02 22:11+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2018-01-09 20:36+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n" "Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.6.10\n"
#: ../Doc/library/colorsys.rst:2 #: ../Doc/library/colorsys.rst:2
msgid ":mod:`colorsys` --- Conversions between color systems" msgid ":mod:`colorsys` --- Conversions between color systems"
msgstr "" msgstr ":mod:`colorsys` --- Conversions entre les systèmes de couleurs"
#: ../Doc/library/colorsys.rst:9 #: ../Doc/library/colorsys.rst:9
msgid "**Source code:** :source:`Lib/colorsys.py`" msgid "**Source code:** :source:`Lib/colorsys.py`"
@ -35,6 +35,15 @@ msgid ""
"coordinate is between 0 and 1, but the I and Q coordinates can be positive " "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." "or negative. In all other spaces, the coordinates are all between 0 and 1."
msgstr "" 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é dans 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."
#: ../Doc/library/colorsys.rst:23 #: ../Doc/library/colorsys.rst:23
msgid "" msgid ""
@ -42,34 +51,47 @@ msgid ""
"ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces." "ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces."
"htm." "htm."
msgstr "" msgstr ""
"Plus d'information concernant les espaces colorimétrique pet être trouvé sur "
"http://www.poynton.com/ColorFAQ.html et https://www.cambridgeincolour.com/"
"tutorials/color-spaces.htm."
#: ../Doc/library/colorsys.rst:27 #: ../Doc/library/colorsys.rst:27
msgid "The :mod:`colorsys` module defines the following functions:" msgid "The :mod:`colorsys` module defines the following functions:"
msgstr "" msgstr "Le module :mod:`colorsys`définit les fonctions suivantes:"
#: ../Doc/library/colorsys.rst:32 #: ../Doc/library/colorsys.rst:32
msgid "Convert the color from RGB coordinates to YIQ coordinates." msgid "Convert the color from RGB coordinates to YIQ coordinates."
msgstr "" msgstr ""
"Convertit la couleur des coordonnées RGB (RVB)vers les coordonnées YIQ."
#: ../Doc/library/colorsys.rst:37 #: ../Doc/library/colorsys.rst:37
msgid "Convert the color from YIQ coordinates to RGB coordinates." msgid "Convert the color from YIQ coordinates to RGB coordinates."
msgstr "" msgstr ""
"Convertit la couleur des coordonnées YIQ vers les coordonnées RGB (RVB)."
#: ../Doc/library/colorsys.rst:42 #: ../Doc/library/colorsys.rst:42
msgid "Convert the color from RGB coordinates to HLS coordinates." msgid "Convert the color from RGB coordinates to HLS coordinates."
msgstr "" msgstr ""
"Convertit la couleur des coordonnées RGB (RVB) vers les coordonnées HLS "
"(TSV)."
#: ../Doc/library/colorsys.rst:47 #: ../Doc/library/colorsys.rst:47
msgid "Convert the color from HLS coordinates to RGB coordinates." msgid "Convert the color from HLS coordinates to RGB coordinates."
msgstr "" msgstr ""
"Convertit la couleur des coordonnées HLS (TSV) vers les coordonnées RGB "
"(RVB)."
#: ../Doc/library/colorsys.rst:52 #: ../Doc/library/colorsys.rst:52
msgid "Convert the color from RGB coordinates to HSV coordinates." msgid "Convert the color from RGB coordinates to HSV coordinates."
msgstr "" msgstr ""
"Convertit la couleur des coordonnées RGB (RVB) vers les coordonnées HSV "
"(TSV)."
#: ../Doc/library/colorsys.rst:57 #: ../Doc/library/colorsys.rst:57
msgid "Convert the color from HSV coordinates to RGB coordinates." msgid "Convert the color from HSV coordinates to RGB coordinates."
msgstr "" msgstr ""
"Convertit la couleur des coordonnées HSV (TSV) vers les coordonnées RGB "
"(RVB)."
#: ../Doc/library/colorsys.rst:59 #: ../Doc/library/colorsys.rst:59
msgid "Example::" msgid "Example::"