Skip to content

Commit d29a7cc

Browse files
Dotpysbrettcannon
authored andcommitted
Added command translations for italian (#1152)
1 parent d1eb8e9 commit d29a7cc

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ contributors (if you would like to contribute a translation, see the
4040
[pull request which added simplified Chinese](https://github.com/Microsoft/vscode-python/pull/240)):
4141

4242
* `en`
43+
* `it`
4344
* `ja`
4445
* `ko-kr`
4546
* `ru`

news/1 Enhancements/1152.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Added commands translation for italian locale.
2+
(thanks [Dotpys](https://github.com/Dotpys/))

package.nls.it.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"python.command.python.sortImports.title": "Ordina gli import",
3+
"python.command.python.startREPL.title": "Apri nuova REPL",
4+
"python.command.python.createTerminal.title": "Apri nuovo terminale",
5+
"python.command.python.buildWorkspaceSymbols.title": "Compila simboli dello spazio di lavoro",
6+
"python.command.python.runtests.title": "Esegui tutti i test",
7+
"python.command.python.debugtests.title": "Esegui debug di tutti i test",
8+
"python.command.python.execInTerminal.title": "Esegui file Python nel terminale",
9+
"python.command.python.setInterpreter.title": "Seleziona interprete",
10+
"python.command.python.updateSparkLibrary.title": "Aggiorna librerie PySpark dello spazio di lavoro",
11+
"python.command.python.refactorExtractVariable.title": "Estrai variable",
12+
"python.command.python.refactorExtractMethod.title": "Estrai metodo",
13+
"python.command.python.viewTestOutput.title": "Mostra output dei test",
14+
"python.command.python.selectAndRunTestMethod.title": "Esegui metodo di test ...",
15+
"python.command.python.selectAndDebugTestMethod.title": "Esegui debug del metodo di test ...",
16+
"python.command.python.selectAndRunTestFile.title": "Esegui file di test ...",
17+
"python.command.python.runCurrentTestFile.title": "Esegui file di test attuale",
18+
"python.command.python.runFailedTests.title": "Esegui test falliti",
19+
"python.command.python.execSelectionInTerminal.title": "Esegui selezione/linea nel terminale di Python",
20+
"python.command.python.execSelectionInDjangoShell.title": "Esegui selezione/linea nella shell Django",
21+
"python.command.python.goToPythonObject.title": "Vai a oggetto Python",
22+
"python.command.python.setLinter.title": "Selezione Linter",
23+
"python.command.python.enableLinting.title": "Attiva Linting",
24+
"python.command.python.runLinting.title": "Esegui Linting",
25+
"python.snippet.launch.standard.label": "Python: File corrente",
26+
"python.snippet.launch.standard.description": "Esegui debug di un programma Python su output predefinito",
27+
"python.snippet.launch.pyspark.label": "Python: PySpark",
28+
"python.snippet.launch.pyspark.description": "Esegui debug PySpark",
29+
"python.snippet.launch.module.label": "Python: Modulo",
30+
"python.snippet.launch.module.description": "Esegui debug modulo Python",
31+
"python.snippet.launch.terminal.label": "Python: Terminale (integrato)",
32+
"python.snippet.launch.terminal.description": "Esegui debug di un programma Python nel terminale integrato",
33+
"python.snippet.launch.externalTerminal.label": "Python: Terminale (esterno)",
34+
"python.snippet.launch.externalTerminal.description": "Esegui debug di un programma Python nel terminale esterno",
35+
"python.snippet.launch.django.label": "Python: Django",
36+
"python.snippet.launch.django.description": "Esegui debug applicazione Django",
37+
"python.snippet.launch.flask.label": "Python: Flask (0.11.x o successiva)",
38+
"python.snippet.launch.flask.description": "Esegui debug applicazione Flask",
39+
"python.snippet.launch.flaskOld.label": "Python: Flask (0.10.x o precedente)",
40+
"python.snippet.launch.flaskOld.description": "Esegui debug applicazione Flask in vecchio stile",
41+
"python.snippet.launch.pyramid.label": "Python: Applicazione Pyramid",
42+
"python.snippet.launch.pyramid.description": "Esegui debug applicazione Pyramid",
43+
"python.snippet.launch.watson.label": "Python: Applicazione Watson",
44+
"python.snippet.launch.watson.description": "Esegui debug applicazione Watson",
45+
"python.snippet.launch.attach.label": "Python: Allega",
46+
"python.snippet.launch.attach.description": "Allega debugger per debug remoto",
47+
"python.snippet.launch.scrapy.label": "Python: Scrapy",
48+
"python.snippet.launch.scrapy.description": "Scrapy con terminale integrato"
49+
}

0 commit comments

Comments
 (0)