@@ -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 "
15- "Language : \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 <organizers@pygreece .org>\n "
15+ "Language : el \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,56 @@ 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) και HSV (Hue Saturation "
42+ "Value). Οι συντεταγμένες σε όλους αυτούς τους χρωματικούς χώρους είναι τιμές "
43+ "κινητής υποδιαστολής. Στο χώρο YIQ, η συντεταγμένη Y είναι μεταξύ 0 και 1, "
44+ "αλλά οι συντεταγμένες I και Q μπορούν να είναι θετικές ή αρνητικές. Σε όλους "
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."
55+ "cambridgeincolour.com/tutorials/color-spaces.htm."
4556
4657#: library/colorsys.rst:27
4758msgid "The :mod:`colorsys` module defines the following functions:"
48- msgstr ""
59+ msgstr "Το module :mod:`colorsys` ορίζει τις παρακάτω λειτουργίες: "
4960
5061#: library/colorsys.rst:32
5162msgid "Convert the color from RGB coordinates to YIQ coordinates."
52- msgstr ""
63+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες RGB σε συντεταγμένες YIQ. "
5364
5465#: library/colorsys.rst:37
5566msgid "Convert the color from YIQ coordinates to RGB coordinates."
56- msgstr ""
67+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες YIQ σε συντεταγμένες RGB. "
5768
5869#: library/colorsys.rst:42
5970msgid "Convert the color from RGB coordinates to HLS coordinates."
60- msgstr ""
71+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες RGB σε συντεταγμένες HLS. "
6172
6273#: library/colorsys.rst:47
6374msgid "Convert the color from HLS coordinates to RGB coordinates."
64- msgstr ""
75+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες HLS σε συντεταγμένες RGB. "
6576
6677#: library/colorsys.rst:52
6778msgid "Convert the color from RGB coordinates to HSV coordinates."
68- msgstr ""
79+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες RGB σε συντεταγμένες HSV. "
6980
7081#: library/colorsys.rst:57
7182msgid "Convert the color from HSV coordinates to RGB coordinates."
72- msgstr ""
83+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες HSV σε συντεταγμένες RGB. "
7384
7485#: library/colorsys.rst:59
7586msgid "Example::"
76- msgstr ""
87+ msgstr "Παράδειγμα:: "
7788
7889#: library/colorsys.rst:61
7990msgid ""
@@ -83,3 +94,8 @@ msgid ""
8394">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n"
8495"(0.2, 0.4, 0.4)"
8596msgstr ""
97+ ">>> import colorsys\n"
98+ ">>> colorsys.rgb_to_hsv(0.2, 0.4, 0.4)\n"
99+ "(0.5, 0.5, 0.4)\n"
100+ ">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n"
101+ "(0.2, 0.4, 0.4)"
0 commit comments