Skip to content

Commit 1c68f8f

Browse files
rtobarcmaureir
authored andcommitted
Traduce library/constants.po (#1634)
La palabra Ellipsis necesitaba ser añadida al diccionario; luego de eso pospell pasa sin problemas. Signed-off-by: Rodrigo Tobar <rtobar@icrar.org>
1 parent 15cd2e7 commit 1c68f8f

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

dictionaries/library_constants.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Ellipsis

library/constants.po

+14-8
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2021-10-16 21:42+0200\n"
14-
"PO-Revision-Date: 2021-08-07 15:50+0200\n"
15-
"Last-Translator: Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n"
14+
"PO-Revision-Date: 2021-11-12 10:12+0800\n"
15+
"Last-Translator: Rodrigo Tobar <rtobarc@gmail.com>\n"
1616
"Language: es\n"
1717
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=utf-8\n"
2121
"Content-Transfer-Encoding: 8bit\n"
2222
"Generated-By: Babel 2.9.1\n"
23+
"X-Generator: Poedit 3.0\n"
2324

2425
#: ../Doc/library/constants.rst:4
2526
msgid "Built-in Constants"
@@ -54,9 +55,12 @@ msgid ""
5455
"illegal and raise a :exc:`SyntaxError`. ``None`` is the sole instance of "
5556
"the :data:`NoneType` type."
5657
msgstr ""
58+
"Un objeto frecuentemente usado para representar la ausencia de un valor, tal "
59+
"como cuando no se entregan argumentos por defecto a una función. Las "
60+
"asignaciones a ``None`` son ilegales y lanzan un :exc:`SytaxError`. ``None`` "
61+
"es la única instancia del tipo :data:`NoneType`."
5762

5863
#: ../Doc/library/constants.rst:30
59-
#, fuzzy
6064
msgid ""
6165
"A special value which should be returned by the binary special methods (e."
6266
"g. :meth:`__eq__`, :meth:`__lt__`, :meth:`__add__`, :meth:`__rsub__`, etc.) "
@@ -68,10 +72,12 @@ msgid ""
6872
msgstr ""
6973
"Valor especial que debe ser retornado por los métodos especiales binarios "
7074
"(por ejemplo :meth:`__eq__`, :meth:`__lt__`, :meth:`__add__`, :meth:"
71-
"`__rsub__`, etc.) para indicar que la operación es no implementado con "
75+
"`__rsub__`, etc.) para indicar que la operación no está implementada con "
7276
"respecto al otro tipo; puede ser retornado por los métodos especiales "
7377
"binarios in situ (por ejemplo :meth:`__imul__`, :meth:`__iand__`, etc.) con "
74-
"el mismo propósito. No debe evaluarse en un contexto booleano."
78+
"el mismo propósito. No debe evaluarse en un contexto booleano. "
79+
"``NotImplemented`` es la única instancia del tipo :data:`types."
80+
"NotImplementedType`."
7581

7682
#: ../Doc/library/constants.rst:40
7783
msgid ""
@@ -116,7 +122,6 @@ msgstr ""
116122
"Python."
117123

118124
#: ../Doc/library/constants.rst:64
119-
#, fuzzy
120125
msgid ""
121126
"The same as the ellipsis literal \"``...``\". Special value used mostly in "
122127
"conjunction with extended slicing syntax for user-defined container data "
@@ -125,7 +130,8 @@ msgid ""
125130
msgstr ""
126131
"Lo mismo que la elipsis literal \"``...``\". Valor especial que se utiliza "
127132
"principalmente junto con la sintaxis de segmentación extendida para tipos de "
128-
"datos de contenedor definidos por el usuario."
133+
"datos de contenedor definidos por el usuario.``Ellipsis`` es la única "
134+
"instancia del tipo :data:`types.EllipsisType`."
129135

130136
#: ../Doc/library/constants.rst:71
131137
msgid ""

0 commit comments

Comments
 (0)