- Notifications
You must be signed in to change notification settings - Fork396
Traduccion library/turtle.po#375
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
9070a57
b031cef
12c71aa
956471d
ba2e423
ce894f2
068973c
9cd155f
df4333c
e87b227
0943db2
d2bdafb
50688ce
0523785
41f3009
003bf61
50328ad
7f0de06
17d1e50
29feb77
dd12b9b
36f6f48
8a1ea86
0048533
443f9ef
ec79d23
f1a9287
86ecf1c
ca627a1
93a3a2d
3d55f7e
c3ec80f
337e1ae
d410904
cc5f428
0ee1a1f
3901bf3
430346b
778cddf
01a5ec2
8094a57
bc2bbf3
091eb5f
078f808
828e395
39c5623
147d2d1
9f51693
68eb0f5
7f3df36
b37568a
e710063
d188dfd
96a5155
e510ffa
0a69af8
d7db38f
64b66e9
31a822d
db19751
5e16df3
ba594ba
40f0892
82ac573
d10036d
63a0961
a0152d7
9f5de8b
3ae40e1
f9212d1
34f7bc3
eb056ab
d4bb756
9ae1754
88381f7
8522f87
77401c4
09a7e21
7826e09
4d31694
561858e
fb7acac
bf235ef
7201b7e
e5d8580
5a36ced
6990864
9ef15cc
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -6,38 +6,43 @@ | ||
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to | ||
# get the list of volunteers | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Python 3.8\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2020-05-05 12:54+0200\n" | ||
"PO-Revision-Date: 2020-05-26 16:42-0300\n" | ||
"Language-Team: python-doc-es\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Generated-By: Babel 2.8.0\n" | ||
"X-Generator: Poedit 2.3.1\n" | ||
"Last-Translator: Alvar Maciel <alvarmaciel@gmail.com>\n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
"Language: es_AR\n" | ||
#: ../Doc/library/turtle.rst:3 | ||
msgid ":mod:`turtle` --- Turtle graphics" | ||
msgstr ":mod:`turtle` --- Gráficas Turtle" | ||
#: ../Doc/library/turtle.rst:10 | ||
msgid "**Source code:** :source:`Lib/turtle.py`" | ||
msgstr "**Código fuente:** :source:`Lib/turtle.py`" | ||
#: ../Doc/library/turtle.rst:20 | ||
msgid "Introduction" | ||
msgstr "Introducción" | ||
#: ../Doc/library/turtle.rst:22 | ||
msgid "" | ||
"Turtle graphics is a popular way for introducing programming to kids. It " | ||
"was part of the original Logo programming language developed by Wally " | ||
"Feurzeig, Seymour Papert and Cynthia Solomon in 1967." | ||
msgstr "" | ||
"Gráficas Turtle es una forma muy habitual de introducción a la programación " | ||
"para niñas y niños. Era parte original del lenguaje de programación Logo, " | ||
"desarrollado por Wally Feurzeig, Seymour Papert y Cynthia Solomon in 1967." | ||
#: ../Doc/library/turtle.rst:26 | ||
msgid "" | ||
@@ -47,23 +52,34 @@ msgid "" | ||
"moves. Give it the command ``turtle.right(25)``, and it rotates in-place 25 " | ||
"degrees clockwise." | ||
msgstr "" | ||
"Imagina una tortuga robot que empieza en las coordenadas (0, 0) en un plano " | ||
"x-y. Después de un ``import turtle``, dele el comando ``turtle." | ||
"forward(15)``, y se mueve (en la pantalla) 15 pixeles en la dirección en la " | ||
alvarmaciel marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"que se encuentra, dibujando una línea mientras se mueve. Dele el comando " | ||
"``turtle.right(25)``, y rotará en el lugar, 25 grados, en sentido horario." | ||
#: ../Doc/library/turtle.rst:33 | ||
msgid "" | ||
"Turtle can draw intricate shapes using programs that repeat simple moves." | ||
msgstr "" | ||
"Turtle puede dibujar intrincadas figuras usando programas que repiten " | ||
alvarmaciel marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page.
alvarmaciel marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"movimientos simples." | ||
#: ../Doc/library/turtle.rst:41 | ||
msgid "" | ||
"By combining together these and similar commands, intricate shapes and " | ||
"pictures can easily be drawn." | ||
msgstr "" | ||
"Al combinar estos comandos y otros similares, se pueden dibujar intrincadas " | ||
"figuras y formas." | ||
alvarmaciel marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/turtle.rst:44 | ||
msgid "" | ||
"The :mod:`turtle` module is an extended reimplementation of the same-named " | ||
"module from the Python standard distribution up to version Python 2.5." | ||
msgstr "" | ||
"El módulo :mod:`turtle` es una reimplementación extendida del mismo módulo " | ||
"de la distribución estándar Python hasta la versión 2.5." | ||
#: ../Doc/library/turtle.rst:47 | ||
#, python-format | ||
@@ -74,6 +90,11 @@ msgid "" | ||
"interactively when using the module from within IDLE run with the ``-n`` " | ||
"switch." | ||
msgstr "" | ||
"Trata de mantener los méritos del viejo módulo y ser (casi) 100% compatible " | ||
"con él. Esto implica en primer lugar, habilitar al programador que está " | ||
"aprendiendo, el uso de todos los comandos, clases y métodos de forma " | ||
"interactiva cuando usa el módulo desde el IDLE ejecutado con la opción ``-" | ||
"n``." | ||
#: ../Doc/library/turtle.rst:52 | ||
msgid "" | ||
@@ -82,10 +103,14 @@ msgid "" | ||
"the underlying graphics, it needs a version of Python installed with Tk " | ||
"support." | ||
msgstr "" | ||
"El módulo turtle provee las primitivas gráficas, tanto en orientación " | ||
"procedimental como orientada a objetos, Como usa el módulo mod:`tkinter` " | ||
alvarmaciel marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"para las gráficas subyacentes, necesita una tener instalada una versión de " | ||
alvarmaciel marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"Python con soporte TK." | ||
#: ../Doc/library/turtle.rst:56 | ||
msgid "The object-oriented interface uses essentially two+two classes:" | ||
msgstr "La interface orientada a objetos usa esencialmente clases dos+dos:" | ||
#: ../Doc/library/turtle.rst:58 | ||
msgid "" | ||
@@ -94,6 +119,8 @@ msgid "" | ||
"class:`ScrolledCanvas` as argument. It should be used when :mod:`turtle` is " | ||
"used as part of some application." | ||
msgstr "" | ||
"La clase :class:`TurtleScreen` define una ventana gráfica como base para las " | ||
"tortugas dibujantes." | ||
alvarmaciel marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
#: ../Doc/library/turtle.rst:63 | ||
msgid "" | ||