@@ -9,21 +9,21 @@ msgstr ""
9
9
"Project-Id-Version : Python 3.12\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
11
"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 [email protected] \n"
14
+ "Language-Team : Language-Team: PyGreece <organizers@pygreece .org>\n "
15
+ "Language : el \n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=UTF-8\n "
18
18
"Content-Transfer-Encoding : 8bit\n "
19
19
20
20
#: library/colorsys.rst:2
21
21
msgid ":mod:`!colorsys` --- Conversions between color systems"
22
- msgstr ""
22
+ msgstr ":mod:`!colorsys` --- Μετατροπές μεταξύ συστημάτων χρωμάτων "
23
23
24
24
#: library/colorsys.rst:9
25
25
msgid "**Source code:** :source:`Lib/colorsys.py`"
26
- msgstr ""
26
+ msgstr "**Πηγαίος κώδικας** :source:`Lib/colorsys.py` "
27
27
28
28
#: library/colorsys.rst:13
29
29
msgid ""
@@ -35,45 +35,56 @@ msgid ""
35
35
"coordinate is between 0 and 1, but the I and Q coordinates can be positive "
36
36
"or negative. In all other spaces, the coordinates are all between 0 and 1."
37
37
msgstr ""
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."
38
46
39
47
#: library/colorsys.rst:23
40
48
msgid ""
41
49
"More information about color spaces can be found at https://poynton.ca/"
42
50
"ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces."
43
51
"htm."
44
52
msgstr ""
53
+ "Περισσότερες πληροφορίες σχετικά με τους χρωματικούς χώρους μπορούν να "
54
+ "βρεθούν στις διευθύνσεις https://poynton.ca/ColorFAQ.html και https://www."
55
+ "cambridgeincolour.com/tutorials/color-spaces.htm."
45
56
46
57
#: library/colorsys.rst:27
47
58
msgid "The :mod:`colorsys` module defines the following functions:"
48
- msgstr ""
59
+ msgstr "Το module :mod:`colorsys` ορίζει τις παρακάτω λειτουργίες: "
49
60
50
61
#: library/colorsys.rst:32
51
62
msgid "Convert the color from RGB coordinates to YIQ coordinates."
52
- msgstr ""
63
+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες RGB σε συντεταγμένες YIQ. "
53
64
54
65
#: library/colorsys.rst:37
55
66
msgid "Convert the color from YIQ coordinates to RGB coordinates."
56
- msgstr ""
67
+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες YIQ σε συντεταγμένες RGB. "
57
68
58
69
#: library/colorsys.rst:42
59
70
msgid "Convert the color from RGB coordinates to HLS coordinates."
60
- msgstr ""
71
+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες RGB σε συντεταγμένες HLS. "
61
72
62
73
#: library/colorsys.rst:47
63
74
msgid "Convert the color from HLS coordinates to RGB coordinates."
64
- msgstr ""
75
+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες HLS σε συντεταγμένες RGB. "
65
76
66
77
#: library/colorsys.rst:52
67
78
msgid "Convert the color from RGB coordinates to HSV coordinates."
68
- msgstr ""
79
+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες RGB σε συντεταγμένες HSV. "
69
80
70
81
#: library/colorsys.rst:57
71
82
msgid "Convert the color from HSV coordinates to RGB coordinates."
72
- msgstr ""
83
+ msgstr "Μετατρέπει το χρώμα από συντεταγμένες HSV σε συντεταγμένες RGB. "
73
84
74
85
#: library/colorsys.rst:59
75
86
msgid "Example::"
76
- msgstr ""
87
+ msgstr "Παράδειγμα:: "
77
88
78
89
#: library/colorsys.rst:61
79
90
msgid ""
@@ -83,3 +94,8 @@ msgid ""
83
94
">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n"
84
95
"(0.2, 0.4, 0.4)"
85
96
msgstr ""
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