1
1
# Copyright (C) 2001-2020, Python Software Foundation
2
2
# This file is distributed under the same license as the Python package.
3
- # Maintained by the python-doc-es workteam.
3
+ # Maintained by the python-doc-es workteam.
4
4
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
5
5
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
6
6
#
7
- #, fuzzy
8
7
msgid ""
9
8
msgstr ""
10
9
"Project-Id-Version : Python 3.8\n "
11
10
"Report-Msgid-Bugs-To : \n "
12
11
"POT-Creation-Date : 2019-05-06 11:59-0400\n "
13
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
14
- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
12
+ "PO-Revision-Date : 2020-10-05 15:02+0200\n "
15
13
"Language-Team : python-doc-es\n "
16
14
"MIME-Version : 1.0\n "
17
15
"Content-Type : text/plain; charset=UTF-8\n "
18
16
"Content-Transfer-Encoding : 8bit\n "
17
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
18
+ "Last-Translator : \n "
19
+ "Language : es_ES\n "
20
+ "X-Generator : Poedit 2.4.1\n "
19
21
20
22
#: ../Doc/library/colorsys.rst:2
21
23
msgid ":mod:`colorsys` --- Conversions between color systems"
22
- msgstr ""
24
+ msgstr ":mod:`colorsys` --- Conversiones entre sistemas de color "
23
25
24
26
#: ../Doc/library/colorsys.rst:9
25
27
msgid "**Source code:** :source:`Lib/colorsys.py`"
26
- msgstr ""
28
+ msgstr "**Código fuente:** :source:`Lib/colorsys.py` "
27
29
28
30
#: ../Doc/library/colorsys.rst:13
29
31
msgid ""
@@ -35,42 +37,55 @@ msgid ""
35
37
"coordinate is between 0 and 1, but the I and Q coordinates can be positive "
36
38
"or negative. In all other spaces, the coordinates are all between 0 and 1."
37
39
msgstr ""
40
+ "El módulo :mod:`colorsys` define conversiones bidireccionales de valores de "
41
+ "color entre colores expresados en el espacio de color RGB (sigla en inglés "
42
+ "de *Red Green Blue*, en español Rojo Verde Azul) utilizado en monitores de "
43
+ "ordenador y otros tres sistemas de coordenadas: YIQ, HLS (sigla en inglés de "
44
+ "*Hue Lightness Saturation*, en español Matiz Luminosidad Saturación) y HSV "
45
+ "(sigla en inglés de *Hue Saturation Value*, en español Matiz Saturación "
46
+ "Valor). Las coordenadas en todos estos espacios de color son números de "
47
+ "punto flotante. En el espacio YIQ, la coordenada Y está entre 0 y 1, pero "
48
+ "las coordenadas I y Q pueden ser positivas o negativas. En todos los demás "
49
+ "espacios, las coordenadas están todas entre 0 y 1."
38
50
39
51
#: ../Doc/library/colorsys.rst:23
40
52
msgid ""
41
53
"More information about color spaces can be found at http://poynton.ca/"
42
54
"ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces."
43
55
"htm."
44
56
msgstr ""
57
+ "Puede encontrar más información sobre los espacios de color en http://"
58
+ "poynton.ca/ColorFAQ.html y https://www.cambridgeincolour.com/tutorials/color-"
59
+ "spaces.htm."
45
60
46
61
#: ../Doc/library/colorsys.rst:27
47
62
msgid "The :mod:`colorsys` module defines the following functions:"
48
- msgstr ""
63
+ msgstr "El módulo :mod:`colorsys` define las siguientes funciones: "
49
64
50
65
#: ../Doc/library/colorsys.rst:32
51
66
msgid "Convert the color from RGB coordinates to YIQ coordinates."
52
- msgstr ""
67
+ msgstr "Convierte el color de las coordenadas RGB en coordenadas YIQ. "
53
68
54
69
#: ../Doc/library/colorsys.rst:37
55
70
msgid "Convert the color from YIQ coordinates to RGB coordinates."
56
- msgstr ""
71
+ msgstr "Convierte el color de las coordenadas YIQ en coordenadas RGB. "
57
72
58
73
#: ../Doc/library/colorsys.rst:42
59
74
msgid "Convert the color from RGB coordinates to HLS coordinates."
60
- msgstr ""
75
+ msgstr "Convierte el color de las coordenadas RGB en coordenadas HLS. "
61
76
62
77
#: ../Doc/library/colorsys.rst:47
63
78
msgid "Convert the color from HLS coordinates to RGB coordinates."
64
- msgstr ""
79
+ msgstr "Convierte el color de las coordenadas HLS en coordenadas RGB. "
65
80
66
81
#: ../Doc/library/colorsys.rst:52
67
82
msgid "Convert the color from RGB coordinates to HSV coordinates."
68
- msgstr ""
83
+ msgstr "Convierte el color de las coordenadas RGB en coordenadas HSV. "
69
84
70
85
#: ../Doc/library/colorsys.rst:57
71
86
msgid "Convert the color from HSV coordinates to RGB coordinates."
72
- msgstr ""
87
+ msgstr "Convierte el color de las coordenadas HSV en coordenadas RGB. "
73
88
74
89
#: ../Doc/library/colorsys.rst:59
75
90
msgid "Example::"
76
- msgstr ""
91
+ msgstr "Ejemplo:: "
0 commit comments