@@ -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 "
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 "
15
15
"Language : \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,55 @@ 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) and HSV (Hue Saturation Value). Οι συντεταγμένες "
42
+ "σε όλους αυτούς τους χρωματικούς χώρους είναι τιμές κινητής υποδιαστολής. Στο χώρο YIQ, "
43
+ "η συντεταγμένη Y είναι μεταξύ 0 και 1, αλλά οι συντεταγμένες I και Q μπορούν να είναι "
44
+ "θετικές ή αρνητικές. Σε όλους τους άλλους χώρους, οι συντεταγμένες είναι όλες μεταξύ "
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.cambridgeincolour.com/tutorials/color-spaces.htm."
45
55
46
56
#: library/colorsys.rst:27
47
57
msgid "The :mod:`colorsys` module defines the following functions:"
48
- msgstr ""
58
+ msgstr "Το module :mod:`colorsys` ορίζει τις παρακάτω λειτουργίες: "
49
59
50
60
#: library/colorsys.rst:32
51
61
msgid "Convert the color from RGB coordinates to YIQ coordinates."
52
- msgstr ""
62
+ msgstr "Μετατροπή του χρώματος από συντεταγμένες RGB σε συντεταγμένες YIQ. "
53
63
54
64
#: library/colorsys.rst:37
55
65
msgid "Convert the color from YIQ coordinates to RGB coordinates."
56
- msgstr ""
66
+ msgstr "Μετατροπή του χρώματος από συντεταγμένες YIQ σε συντεταγμένες RGB. "
57
67
58
68
#: library/colorsys.rst:42
59
69
msgid "Convert the color from RGB coordinates to HLS coordinates."
60
- msgstr ""
70
+ msgstr "Μετατροπή του χρώματος από συντεταγμένες RGB σε συντεταγμένες HLS. "
61
71
62
72
#: library/colorsys.rst:47
63
73
msgid "Convert the color from HLS coordinates to RGB coordinates."
64
- msgstr ""
74
+ msgstr "Μετατροπή του χρώματος από συντεταγμένες HLS σε συντεταγμένες RGB. "
65
75
66
76
#: library/colorsys.rst:52
67
77
msgid "Convert the color from RGB coordinates to HSV coordinates."
68
- msgstr ""
78
+ msgstr "Μετατροπή του χρώματος από συντεταγμένες RGB σε συντεταγμένες HSV. "
69
79
70
80
#: library/colorsys.rst:57
71
81
msgid "Convert the color from HSV coordinates to RGB coordinates."
72
- msgstr ""
82
+ msgstr "Μετατροπή του χρώματος από συντεταγμένες HSV σε συντεταγμένες RGB. "
73
83
74
84
#: library/colorsys.rst:59
75
85
msgid "Example::"
76
- msgstr ""
86
+ msgstr "Παράδειγμα:: "
77
87
78
88
#: library/colorsys.rst:61
79
89
msgid ""
@@ -83,3 +93,8 @@ msgid ""
83
93
">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n"
84
94
"(0.2, 0.4, 0.4)"
85
95
msgstr ""
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