Skip to content

Commit 9070a57

Browse files
committed
inicio de traducción. prueba pre-commit
1 parent e2156ae commit 9070a57

File tree

1 file changed

+35
-8
lines changed

1 file changed

+35
-8
lines changed

library/turtle.po

Lines changed: 35 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,38 +6,43 @@
66
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
77
# get the list of volunteers
88
#
9-
#, fuzzy
109
msgid ""
1110
msgstr ""
1211
"Project-Id-Version: Python 3.8\n"
1312
"Report-Msgid-Bugs-To: \n"
1413
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
15-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
16-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"PO-Revision-Date: 2020-05-26 16:42-0300\n"
1715
"Language-Team: python-doc-es\n"
1816
"MIME-Version: 1.0\n"
19-
"Content-Type: text/plain; charset=utf-8\n"
17+
"Content-Type: text/plain; charset=UTF-8\n"
2018
"Content-Transfer-Encoding: 8bit\n"
2119
"Generated-By: Babel 2.8.0\n"
20+
"X-Generator: Poedit 2.3.1\n"
21+
"Last-Translator: Alvar Maciel <alvarmaciel@gmail.com>\n"
22+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
23+
"Language: es_AR\n"
2224

2325
#: ../Doc/library/turtle.rst:3
2426
msgid ":mod:`turtle` --- Turtle graphics"
25-
msgstr ""
27+
msgstr ":mod:`turtle` --- Gráficas Turtle"
2628

2729
#: ../Doc/library/turtle.rst:10
2830
msgid "**Source code:** :source:`Lib/turtle.py`"
29-
msgstr ""
31+
msgstr "**Código fuente:** :source:`Lib/turtle.py`"
3032

3133
#: ../Doc/library/turtle.rst:20
3234
msgid "Introduction"
33-
msgstr ""
35+
msgstr "Introducción"
3436

3537
#: ../Doc/library/turtle.rst:22
3638
msgid ""
3739
"Turtle graphics is a popular way for introducing programming to kids. It "
3840
"was part of the original Logo programming language developed by Wally "
3941
"Feurzeig, Seymour Papert and Cynthia Solomon in 1967."
4042
msgstr ""
43+
"Gráficas Turtle es una forma muy habitual de introducción a la programación "
44+
"para niñas y niños. Era parte original del lenguaje de programación Logo, "
45+
"desarrollado por Wally Feurzeig, Seymour Papert y Cynthia Solomon in 1967."
4146

4247
#: ../Doc/library/turtle.rst:26
4348
msgid ""
@@ -47,23 +52,34 @@ msgid ""
4752
"moves. Give it the command ``turtle.right(25)``, and it rotates in-place 25 "
4853
"degrees clockwise."
4954
msgstr ""
55+
"Imagina una tortuga robot que empieza en las coordenadas (0, 0) en un plano "
56+
"x-y. Después de un ``import turtle``, dele el comando ``turtle."
57+
"forward(15)``, y se mueve (en la pantalla) 15 pixeles en la dirección en la "
58+
"que se encuentra, dibujando una línea mientras se mueve. Dele el comando "
59+
"``turtle.right(25)``, y rotará en el lugar, 25 grados, en sentido horario."
5060

5161
#: ../Doc/library/turtle.rst:33
5262
msgid ""
5363
"Turtle can draw intricate shapes using programs that repeat simple moves."
5464
msgstr ""
65+
"Turtle puede dibujar intrincadas figuras usando programas que repiten "
66+
"movimientos simples."
5567

5668
#: ../Doc/library/turtle.rst:41
5769
msgid ""
5870
"By combining together these and similar commands, intricate shapes and "
5971
"pictures can easily be drawn."
6072
msgstr ""
73+
"Al combinar estos comandos y otros similares, se pueden dibujar intrincadas "
74+
"figuras y formas."
6175

6276
#: ../Doc/library/turtle.rst:44
6377
msgid ""
6478
"The :mod:`turtle` module is an extended reimplementation of the same-named "
6579
"module from the Python standard distribution up to version Python 2.5."
6680
msgstr ""
81+
"El módulo :mod:`turtle` es una reimplementación extendida del mismo módulo "
82+
"de la distribución estándar Python hasta la versión 2.5."
6783

6884
#: ../Doc/library/turtle.rst:47
6985
#, python-format
@@ -74,6 +90,11 @@ msgid ""
7490
"interactively when using the module from within IDLE run with the ``-n`` "
7591
"switch."
7692
msgstr ""
93+
"Trata de mantener los méritos del viejo módulo y ser (casi) 100% compatible "
94+
"con él. Esto implica en primer lugar, habilitar al programador que está "
95+
"aprendiendo, el uso de todos los comandos, clases y métodos de forma "
96+
"interactiva cuando usa el módulo desde el IDLE ejecutado con la opción ``-"
97+
"n``."
7798

7899
#: ../Doc/library/turtle.rst:52
79100
msgid ""
@@ -82,10 +103,14 @@ msgid ""
82103
"the underlying graphics, it needs a version of Python installed with Tk "
83104
"support."
84105
msgstr ""
106+
"El módulo turtle provee las primitivas gráficas, tanto en orientación "
107+
"procedimental como orientada a objetos, Como usa el módulo mod:`tkinter` "
108+
"para las gráficas subyacentes, necesita una tener instalada una versión de "
109+
"Python con soporte TK."
85110

86111
#: ../Doc/library/turtle.rst:56
87112
msgid "The object-oriented interface uses essentially two+two classes:"
88-
msgstr ""
113+
msgstr "La interface orientada a objetos usa esencialmente clases dos+dos:"
89114

90115
#: ../Doc/library/turtle.rst:58
91116
msgid ""
@@ -94,6 +119,8 @@ msgid ""
94119
"class:`ScrolledCanvas` as argument. It should be used when :mod:`turtle` is "
95120
"used as part of some application."
96121
msgstr ""
122+
"La clase :class:`TurtleScreen` define una ventana gráfica como base para las "
123+
"tortugas dibujantes."
97124

98125
#: ../Doc/library/turtle.rst:63
99126
msgid ""

0 commit comments

Comments
 (0)