-
-
Notifications
You must be signed in to change notification settings - Fork 16
translate-library-colorsys #1084
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
alextzioras
wants to merge
8
commits into
python:3.14
Choose a base branch
from
alextzioras:translate-library-colorsys
base: 3.14
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
f1c6bbb
translate-library-colorsys
alextzioras 3c4dd6e
make change
alextzioras ccc411f
add main.txt
alextzioras 99f4485
[pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot] 488710a
Update library/colorsys.po
alextzioras ae2ea32
Apply suggestions from code review
alextzioras 4b9d140
Merge branch '3.14' into translate-library-colorsys
alextzioras 0e07c93
add Qt
alextzioras File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,21 +9,21 @@ msgstr "" | |
"Project-Id-Version: Python 3.12\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2025-05-10 10:19+0300\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
"PO-Revision-Date: 2025-05-20 12:46+0300\n" | ||
"Last-Translator: ALEXANDROS TZIORAS [email protected]\n" | ||
"Language-Team: Language-Team: PyGreece <[email protected]>\n" | ||
"Language: \n" | ||
alextzioras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
|
||
#: library/colorsys.rst:2 | ||
msgid ":mod:`!colorsys` --- Conversions between color systems" | ||
msgstr "" | ||
msgstr ":mod:`!colorsys` --- Μετατροπές μεταξύ συστημάτων χρωμάτων" | ||
|
||
#: library/colorsys.rst:9 | ||
msgid "**Source code:** :source:`Lib/colorsys.py`" | ||
msgstr "" | ||
msgstr "**Πηγαίος κώδικας** :source:`Lib/colorsys.py`" | ||
|
||
#: library/colorsys.rst:13 | ||
msgid "" | ||
|
@@ -35,45 +35,56 @@ msgid "" | |
"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." | ||
msgstr "" | ||
"Το module :mod:`colorsys` ορίζει αμφίδρομες μετατροπές των χρωματικών τιμών " | ||
"μεταξύ των χρωμάτων που εκφράζονται στον χρωματικό χώρο RGB (Red Green Blue) " | ||
"που χρησιμοποιείται στις οθόνες υπολογιστών και σε τρία άλλα συστήματα " | ||
"συντεταγμένων: YIQ, HLS (Hue Lightness Saturation) and HSV (Hue Saturation " | ||
alextzioras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"Value). Οι συντεταγμένες σε όλους αυτούς τους χρωματικούς χώρους είναι τιμές " | ||
"κινητής υποδιαστολής. Στο χώρο YIQ, η συντεταγμένη Y είναι μεταξύ 0 και 1, " | ||
"αλλά οι συντεταγμένες I και Q μπορούν να είναι θετικές ή αρνητικές. Σε όλους " | ||
"τους άλλους χώρους, οι συντεταγμένες είναι όλες μεταξύ 0 και 1." | ||
|
||
#: library/colorsys.rst:23 | ||
msgid "" | ||
"More information about color spaces can be found at https://poynton.ca/" | ||
"ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces." | ||
"htm." | ||
msgstr "" | ||
"Περισσότερες πληροφορίες σχετικά με τους χρωματικούς χώρους μπορούν να " | ||
"βρεθούν στις διευθύνσεις https://poynton.ca/ColorFAQ.html και https://www." | ||
"cambridgeincolour.com/tutorials/color-spaces.htm." | ||
|
||
#: library/colorsys.rst:27 | ||
msgid "The :mod:`colorsys` module defines the following functions:" | ||
msgstr "" | ||
msgstr "Το module :mod:`colorsys` ορίζει τις παρακάτω λειτουργίες:" | ||
|
||
#: library/colorsys.rst:32 | ||
msgid "Convert the color from RGB coordinates to YIQ coordinates." | ||
msgstr "" | ||
msgstr "Μετατροπή του χρώματος από συντεταγμένες RGB σε συντεταγμένες YIQ." | ||
alextzioras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: library/colorsys.rst:37 | ||
msgid "Convert the color from YIQ coordinates to RGB coordinates." | ||
msgstr "" | ||
msgstr "Μετατροπή του χρώματος από συντεταγμένες YIQ σε συντεταγμένες RGB." | ||
alextzioras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: library/colorsys.rst:42 | ||
msgid "Convert the color from RGB coordinates to HLS coordinates." | ||
msgstr "" | ||
msgstr "Μετατροπή του χρώματος από συντεταγμένες RGB σε συντεταγμένες HLS." | ||
alextzioras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: library/colorsys.rst:47 | ||
msgid "Convert the color from HLS coordinates to RGB coordinates." | ||
msgstr "" | ||
msgstr "Μετατροπή του χρώματος από συντεταγμένες HLS σε συντεταγμένες RGB." | ||
alextzioras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: library/colorsys.rst:52 | ||
msgid "Convert the color from RGB coordinates to HSV coordinates." | ||
msgstr "" | ||
msgstr "Μετατροπή του χρώματος από συντεταγμένες RGB σε συντεταγμένες HSV." | ||
alextzioras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: library/colorsys.rst:57 | ||
msgid "Convert the color from HSV coordinates to RGB coordinates." | ||
msgstr "" | ||
msgstr "Μετατροπή του χρώματος από συντεταγμένες HSV σε συντεταγμένες RGB." | ||
alextzioras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: library/colorsys.rst:59 | ||
msgid "Example::" | ||
msgstr "" | ||
msgstr "Παράδειγμα::" | ||
|
||
#: library/colorsys.rst:61 | ||
msgid "" | ||
|
@@ -83,3 +94,8 @@ msgid "" | |
">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n" | ||
"(0.2, 0.4, 0.4)" | ||
msgstr "" | ||
">>> import colorsys\n" | ||
">>> colorsys.rgb_to_hsv(0.2, 0.4, 0.4)\n" | ||
"(0.5, 0.5, 0.4)\n" | ||
">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n" | ||
"(0.2, 0.4, 0.4)" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.