From 291e7e9961c0a69cbadc6072a337de987cd411ce Mon Sep 17 00:00:00 2001 From: Julien Russo Date: Thu, 22 Mar 2018 12:20:33 +0100 Subject: [PATCH 1/3] Added command translations for italian --- package.nls.it.json | 49 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 package.nls.it.json diff --git a/package.nls.it.json b/package.nls.it.json new file mode 100644 index 000000000000..a054f8641ed5 --- /dev/null +++ b/package.nls.it.json @@ -0,0 +1,49 @@ +{ + "python.command.python.sortImports.title": "Ordina gli import", + "python.command.python.startREPL.title": "Inizia nuova REPL", + "python.command.python.createTerminal.title": "Crea terminale", + "python.command.python.buildWorkspaceSymbols.title": "Compila simboli dello spazio di lavoro", + "python.command.python.runtests.title": "Esegui tutti i test", + "python.command.python.debugtests.title": "Esegui debug di tutti i test", + "python.command.python.execInTerminal.title": "Esegui file Python nel terminale", + "python.command.python.setInterpreter.title": "Seleziona interprete", + "python.command.python.updateSparkLibrary.title": "Aggiorna librerie PySpark dello spazio di lavoro", + "python.command.python.refactorExtractVariable.title": "Estrai variable", + "python.command.python.refactorExtractMethod.title": "Estrai metodo", + "python.command.python.viewTestOutput.title": "Mostra output dei test", + "python.command.python.selectAndRunTestMethod.title": "Esegui metodo test ...", + "python.command.python.selectAndDebugTestMethod.title": "Esegui debug metodo test ...", + "python.command.python.selectAndRunTestFile.title": "Esegui file di test ...", + "python.command.python.runCurrentTestFile.title": "Esegui l'attuale file di test", + "python.command.python.runFailedTests.title": "Esegui test falliti", + "python.command.python.execSelectionInTerminal.title": "Esegui selezione/riga nel terminale di Python", + "python.command.python.execSelectionInDjangoShell.title": "Esegui selezione/riga nella shell Django", + "python.command.python.goToPythonObject.title": "Vai a oggetto Python", + "python.command.python.setLinter.title": "Selezione Linter", + "python.command.python.enableLinting.title": "Abilita Linting", + "python.command.python.runLinting.title": "Esegui Linting", + "python.snippet.launch.standard.label": "Python: File attuale", + "python.snippet.launch.standard.description": "Esegui debug di un programma Python con output predefinito", + "python.snippet.launch.pyspark.label": "Python: PySpark", + "python.snippet.launch.pyspark.description": "Esegui debug PySpark", + "python.snippet.launch.module.label": "Python: Modulo", + "python.snippet.launch.module.description": "Esegui debug modulo Python", + "python.snippet.launch.terminal.label": "Python: Terminale (integrato)", + "python.snippet.launch.terminal.description": "Esegui debug di un programma Python con terminale integrato", + "python.snippet.launch.externalTerminal.label": "Python: Terminale (esterno)", + "python.snippet.launch.externalTerminal.description": "Esegui debug di un programma Python con terminale esterno", + "python.snippet.launch.django.label": "Python: Django", + "python.snippet.launch.django.description": "Esegui debug applicazione Django", + "python.snippet.launch.flask.label": "Python: Flask (0.11.x o successiva)", + "python.snippet.launch.flask.description": "Esegui debug applicazione Flask", + "python.snippet.launch.flaskOld.label": "Python: Flask (0.10.x o precedente)", + "python.snippet.launch.flaskOld.description": "Esegui debug applicazione Flask in vecchio stile", + "python.snippet.launch.pyramid.label": "Python: Applicazione Pyramid", + "python.snippet.launch.pyramid.description": "Esegui debug applicazione Pyramid", + "python.snippet.launch.watson.label": "Python: Applicazione Watson", + "python.snippet.launch.watson.description": "Esegui debug applicazione Watson", + "python.snippet.launch.attach.label": "Python: Allega", + "python.snippet.launch.attach.description": "Allega debugger per debug remoto", + "python.snippet.launch.scrapy.label": "Python: Scrapy", + "python.snippet.launch.scrapy.description": "Scrapy con terminale integrato" +} From b4e1dd7b7bba13745b887c632e264999c47f004b Mon Sep 17 00:00:00 2001 From: Dotpys Date: Fri, 23 Mar 2018 00:18:36 +0100 Subject: [PATCH 2/3] Added news entry file and updated locales support in README --- README.md | 1 + news/1 Enhancements/1152.md | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 news/1 Enhancements/1152.md diff --git a/README.md b/README.md index 4e66c84e5a8f..19aa65b0f9e7 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ contributors (if you would like to contribute a translation, see the [pull request which added simplified Chinese](https://github.com/Microsoft/vscode-python/pull/240)): * `en` +* `it` * `ja` * `ko-kr` * `ru` diff --git a/news/1 Enhancements/1152.md b/news/1 Enhancements/1152.md new file mode 100644 index 000000000000..25c2dcea67cb --- /dev/null +++ b/news/1 Enhancements/1152.md @@ -0,0 +1,2 @@ +Added commands translation for italian locale. +(thanks [Dotpys](https://github.com/Dotpys/)) \ No newline at end of file From 01983aeef045d2a6d88ee02fa1d0df0bc20fb8bb Mon Sep 17 00:00:00 2001 From: Dotpys Date: Tue, 27 Mar 2018 18:04:09 +0200 Subject: [PATCH 3/3] Modified some translations. --- package.nls.it.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/package.nls.it.json b/package.nls.it.json index a054f8641ed5..6fabf1d664c8 100644 --- a/package.nls.it.json +++ b/package.nls.it.json @@ -1,7 +1,7 @@ { "python.command.python.sortImports.title": "Ordina gli import", - "python.command.python.startREPL.title": "Inizia nuova REPL", - "python.command.python.createTerminal.title": "Crea terminale", + "python.command.python.startREPL.title": "Apri nuova REPL", + "python.command.python.createTerminal.title": "Apri nuovo terminale", "python.command.python.buildWorkspaceSymbols.title": "Compila simboli dello spazio di lavoro", "python.command.python.runtests.title": "Esegui tutti i test", "python.command.python.debugtests.title": "Esegui debug di tutti i test", @@ -11,27 +11,27 @@ "python.command.python.refactorExtractVariable.title": "Estrai variable", "python.command.python.refactorExtractMethod.title": "Estrai metodo", "python.command.python.viewTestOutput.title": "Mostra output dei test", - "python.command.python.selectAndRunTestMethod.title": "Esegui metodo test ...", - "python.command.python.selectAndDebugTestMethod.title": "Esegui debug metodo test ...", + "python.command.python.selectAndRunTestMethod.title": "Esegui metodo di test ...", + "python.command.python.selectAndDebugTestMethod.title": "Esegui debug del metodo di test ...", "python.command.python.selectAndRunTestFile.title": "Esegui file di test ...", - "python.command.python.runCurrentTestFile.title": "Esegui l'attuale file di test", + "python.command.python.runCurrentTestFile.title": "Esegui file di test attuale", "python.command.python.runFailedTests.title": "Esegui test falliti", - "python.command.python.execSelectionInTerminal.title": "Esegui selezione/riga nel terminale di Python", - "python.command.python.execSelectionInDjangoShell.title": "Esegui selezione/riga nella shell Django", + "python.command.python.execSelectionInTerminal.title": "Esegui selezione/linea nel terminale di Python", + "python.command.python.execSelectionInDjangoShell.title": "Esegui selezione/linea nella shell Django", "python.command.python.goToPythonObject.title": "Vai a oggetto Python", "python.command.python.setLinter.title": "Selezione Linter", - "python.command.python.enableLinting.title": "Abilita Linting", + "python.command.python.enableLinting.title": "Attiva Linting", "python.command.python.runLinting.title": "Esegui Linting", - "python.snippet.launch.standard.label": "Python: File attuale", - "python.snippet.launch.standard.description": "Esegui debug di un programma Python con output predefinito", + "python.snippet.launch.standard.label": "Python: File corrente", + "python.snippet.launch.standard.description": "Esegui debug di un programma Python su output predefinito", "python.snippet.launch.pyspark.label": "Python: PySpark", "python.snippet.launch.pyspark.description": "Esegui debug PySpark", "python.snippet.launch.module.label": "Python: Modulo", "python.snippet.launch.module.description": "Esegui debug modulo Python", "python.snippet.launch.terminal.label": "Python: Terminale (integrato)", - "python.snippet.launch.terminal.description": "Esegui debug di un programma Python con terminale integrato", + "python.snippet.launch.terminal.description": "Esegui debug di un programma Python nel terminale integrato", "python.snippet.launch.externalTerminal.label": "Python: Terminale (esterno)", - "python.snippet.launch.externalTerminal.description": "Esegui debug di un programma Python con terminale esterno", + "python.snippet.launch.externalTerminal.description": "Esegui debug di un programma Python nel terminale esterno", "python.snippet.launch.django.label": "Python: Django", "python.snippet.launch.django.description": "Esegui debug applicazione Django", "python.snippet.launch.flask.label": "Python: Flask (0.11.x o successiva)",