@@ -9,21 +9,21 @@ msgstr ""
99"Project-Id-Version : Python 3.12\n "
1010"Report-Msgid-Bugs-To : \n "
1111"POT-Creation-Date : 2025-05-10 10:19+0300\n "
12- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE \n "
13- "Last-Translator : FULL NAME <EMAIL@ADDRESS> \n "
14- "Language-Team : LANGUAGE <LL@li.org >\n "
12+ "PO-Revision-Date : 2025-05-20 12:46+0300 \n "
13+ "Last-Translator : ALEXANDROS TZIORAS alextzioras23@gmail.com \n "
14+ "Language-Team : Language-Team: PyGreece <pygreece@gmail.com >\n "
1515"Language : \n "
1616"MIME-Version : 1.0\n "
1717"Content-Type : text/plain; charset=UTF-8\n "
1818"Content-Transfer-Encoding : 8bit\n "
1919
2020#: library/colorsys.rst:2
2121msgid ":mod:`!colorsys` --- Conversions between color systems"
22- msgstr ""
22+ msgstr ":mod:`!colorsys` --- Μετατροπές μεταξύ συστημάτων χρωμάτων "
2323
2424#: library/colorsys.rst:9
2525msgid "**Source code:** :source:`Lib/colorsys.py`"
26- msgstr ""
26+ msgstr "**Πηγαίος κώδικας** :source:`Lib/colorsys.py` "
2727
2828#: library/colorsys.rst:13
2929msgid ""
@@ -35,45 +35,55 @@ msgid ""
3535"coordinate is between 0 and 1, but the I and Q coordinates can be positive "
3636"or negative. In all other spaces, the coordinates are all between 0 and 1."
3737msgstr ""
38+ "Το module :mod:`colorsys` ορίζει αμφίδρομες μετατροπές των χρωματικών τιμών "
39+ "μεταξύ των χρωμάτων που εκφράζονται στον χρωματικό χώρο RGB (Red Green Blue) "
40+ "που χρησιμοποιείται στις οθόνες υπολογιστών και σε τρία άλλα συστήματα συντεταγμένων: "
41+ "YIQ, HLS (Hue Lightness Saturation) and HSV (Hue Saturation Value). Οι συντεταγμένες "
42+ "σε όλους αυτούς τους χρωματικούς χώρους είναι τιμές κινητής υποδιαστολής. Στο χώρο YIQ, "
43+ "η συντεταγμένη Y είναι μεταξύ 0 και 1, αλλά οι συντεταγμένες I και Q μπορούν να είναι "
44+ "θετικές ή αρνητικές. Σε όλους τους άλλους χώρους, οι συντεταγμένες είναι όλες μεταξύ "
45+ "0 και 1."
3846
3947#: library/colorsys.rst:23
4048msgid ""
4149"More information about color spaces can be found at https://poynton.ca/"
4250"ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces."
4351"htm."
4452msgstr ""
53+ "Περισσότερες πληροφορίες σχετικά με τους χρωματικούς χώρους μπορούν να βρεθούν στις διευθύνσεις "
54+ "https://poynton.ca/ColorFAQ.html και https://www.cambridgeincolour.com/tutorials/color-spaces.htm."
4555
4656#: library/colorsys.rst:27
4757msgid "The :mod:`colorsys` module defines the following functions:"
48- msgstr ""
58+ msgstr "Το module :mod:`colorsys` ορίζει τις παρακάτω λειτουργίες: "
4959
5060#: library/colorsys.rst:32
5161msgid "Convert the color from RGB coordinates to YIQ coordinates."
52- msgstr ""
62+ msgstr "Μετατροπή του χρώματος από συντεταγμένες RGB σε συντεταγμένες YIQ. "
5363
5464#: library/colorsys.rst:37
5565msgid "Convert the color from YIQ coordinates to RGB coordinates."
56- msgstr ""
66+ msgstr "Μετατροπή του χρώματος από συντεταγμένες YIQ σε συντεταγμένες RGB. "
5767
5868#: library/colorsys.rst:42
5969msgid "Convert the color from RGB coordinates to HLS coordinates."
60- msgstr ""
70+ msgstr "Μετατροπή του χρώματος από συντεταγμένες RGB σε συντεταγμένες HLS. "
6171
6272#: library/colorsys.rst:47
6373msgid "Convert the color from HLS coordinates to RGB coordinates."
64- msgstr ""
74+ msgstr "Μετατροπή του χρώματος από συντεταγμένες HLS σε συντεταγμένες RGB. "
6575
6676#: library/colorsys.rst:52
6777msgid "Convert the color from RGB coordinates to HSV coordinates."
68- msgstr ""
78+ msgstr "Μετατροπή του χρώματος από συντεταγμένες RGB σε συντεταγμένες HSV. "
6979
7080#: library/colorsys.rst:57
7181msgid "Convert the color from HSV coordinates to RGB coordinates."
72- msgstr ""
82+ msgstr "Μετατροπή του χρώματος από συντεταγμένες HSV σε συντεταγμένες RGB. "
7383
7484#: library/colorsys.rst:59
7585msgid "Example::"
76- msgstr ""
86+ msgstr "Παράδειγμα:: "
7787
7888#: library/colorsys.rst:61
7989msgid ""
@@ -83,3 +93,8 @@ msgid ""
8393">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n"
8494"(0.2, 0.4, 0.4)"
8595msgstr ""
96+ ">>> import colorsys\n"
97+ ">>> colorsys.rgb_to_hsv(0.2, 0.4, 0.4)\n"
98+ "(0.5, 0.5, 0.4)\n"
99+ ">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n"
100+ "(0.2, 0.4, 0.4)"
0 commit comments