Skip to content
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

Added Spanish translation #1902

Merged
merged 4 commits into from
Jun 8, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ contributors (if you would like to contribute a translation, see the
[pull request which added Italian](https://github.com/Microsoft/vscode-python/pull/1152)):

* `en`
* `es`
* `it`
* `ja`
* `ko-kr`
Expand Down
2 changes: 2 additions & 0 deletions news/1 Enhancements/1902.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Added Spanish translation
(thanks [Mario Rubio](https://github.com/mario-mra/))
52 changes: 52 additions & 0 deletions package.nls.es.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"python.command.python.sortImports.title": "Ordenar importaciones",
"python.command.python.startREPL.title": "Nuevo REPL",
"python.command.python.createTerminal.title": "Nueva terminal",
"python.command.python.buildWorkspaceSymbols.title": "Compilar símbolos del area de trabajo",
"python.command.python.runtests.title": "Ejecutar todas las pruebas unitarias",
"python.command.python.debugtests.title": "Depurar todas la pruebas unitarias",
"python.command.python.execInTerminal.title": "Ejecutar archivo Python en la terminal",
"python.command.python.setInterpreter.title": "Seleccionar intérprete",
"python.command.python.updateSparkLibrary.title": "Actualizar las librerías PySpark del area de trabajo",
"python.command.python.refactorExtractVariable.title": "Extraer variable",
"python.command.python.refactorExtractMethod.title": "Método de extracción",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be "Extraer método".

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, I've just change it.
Thank you!

"python.command.python.viewTestOutput.title": "Mostrar resultados de la prueba unitaria",
"python.command.python.selectAndRunTestMethod.title": "Método de ejecución de pruebas unitarias ...",
"python.command.python.selectAndDebugTestMethod.title": "Método de depuración de pruebas unitarias ...",
"python.command.python.selectAndRunTestFile.title": "Ejecutar archivo de prueba unitaria ...",
"python.command.python.runCurrentTestFile.title": "Ejecutar archivo de prueba unitaria actual",
"python.command.python.runFailedTests.title": "Ejecutar pruebas unitarias fallidas",
"python.command.python.discoverTests.title": "Encontrar pruebas unitarias",
"python.command.python.execSelectionInTerminal.title": "Ejecutar linea/selección en la terminal",
"python.command.python.execSelectionInDjangoShell.title": "Ejecutar linea/selección en el interprete de Django",
"python.command.python.goToPythonObject.title": "Ir al objeto de Python",
"python.command.python.setLinter.title": "Selecionar Linter",
"python.command.python.enableLinting.title": "Habilitar Linting",
"python.command.python.runLinting.title": "Ejecutar Linting",
"python.snippet.launch.standard.label": "Python: Archivo actual",
"python.snippet.launch.standard.description": "Depurar una aplicación Python con salida estandar",
"python.snippet.launch.pyspark.label": "Python: PySpark",
"python.snippet.launch.pyspark.description": "Depurar una aplicación de PySpark",
"python.snippet.launch.module.label": "Python: Módulo",
"python.snippet.launch.module.description": "Depurar un módulo de Python",
"python.snippet.launch.terminal.label": "Python: Terminal (integrada)",
"python.snippet.launch.terminal.description": "Depurar una aplicación Python usando la terminal integrada",
"python.snippet.launch.externalTerminal.label": "Python: Terminal (externa)",
"python.snippet.launch.externalTerminal.description": "Depurar una aplicación Python usando una terminal externa",
"python.snippet.launch.django.label": "Python: Django",
"python.snippet.launch.django.description": "Depurar una aplicación de Django",
"python.snippet.launch.flask.label": "Python: Flask (Versión 0.11.x o posterior)",
"python.snippet.launch.flask.description": "Depurar una aplicación de Flask",
"python.snippet.launch.flaskOld.label": "Python: Flask (Versión 0.10.x o anterior)",
"python.snippet.launch.flaskOld.description": "Depurar una aplicación de Flask de estilo antiguo",
"python.snippet.launch.gevent.label": "Python: Gevent",
"python.snippet.launch.gevent.description": "Depurar una aplicación de Gevent",
"python.snippet.launch.pyramid.label": "Python: Pyramid",
"python.snippet.launch.pyramid.description": "Depurar una aplicación de Pyramid",
"python.snippet.launch.watson.label": "Python: Watson",
"python.snippet.launch.watson.description": "Depurar una aplicación de Watson",
"python.snippet.launch.attach.label": "Python: Adjuntar",
"python.snippet.launch.attach.description": "Depuración remota usando depurador adjunto",
"python.snippet.launch.scrapy.label": "Python: Scrapy",
"python.snippet.launch.scrapy.description": "Scrapy usando la terminal integrada"
}