forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"python.command.python.sortImports.title": "Trier les imports", | ||
"python.command.python.startREPL.title": "Démarrer la console interactive", | ||
"python.command.python.createTerminal.title": "Créer un terminal", | ||
"python.command.python.buildWorkspaceSymbols.title": "Construire les symboles de l'espace de travail", | ||
"python.command.python.runtests.title": "Exécuter tous les tests unitaires", | ||
"python.command.python.debugtests.title": "Déboguer tous les tests unitaires", | ||
"python.command.python.execInTerminal.title": "Exécuter le script Python dans un terminal", | ||
"python.command.python.setInterpreter.title": "Selectionner l'interpreteur", | ||
"python.command.python.updateSparkLibrary.title": "Mettre à jour les librairies de l'espace de travail PySpark", | ||
"python.command.python.refactorExtractVariable.title": "Extraire la variable", | ||
"python.command.python.refactorExtractMethod.title": "Extraire la méthode", | ||
"python.command.python.viewTestOutput.title": "Afficher la sortie des tests unitaires", | ||
"python.command.python.selectAndRunTestMethod.title": "Exécuter la méthode de test unitaire ...", | ||
"python.command.python.selectAndDebugTestMethod.title": "Déboguer la méthode de test unitaire ...", | ||
"python.command.python.selectAndRunTestFile.title": "Exécuter le fichier de test unitaire ...", | ||
"python.command.python.runCurrentTestFile.title": "Exécuter le fichier de test unitaire courant", | ||
"python.command.python.runFailedTests.title": "Exécuter les derniers test unitaires échoués", | ||
"python.command.python.execSelectionInTerminal.title": "Exécuter la ligne/sélection dans un terminal Python", | ||
"python.command.python.execSelectionInDjangoShell.title": "Exécuter la ligne/sélection dans un shell Django", | ||
"python.command.python.goToPythonObject.title": "Se rendre à l'objet Python", | ||
"python.command.python.setLinter.title": "Selectionner le linter", | ||
"python.command.python.enableLinting.title": "Activer le linting", | ||
"python.command.python.runLinting.title": "Exécuter le linting", | ||
"python.snippet.launch.standard.label": "Python : Fichier actuel", | ||
"python.snippet.launch.standard.description": "Déboguer un programme Python avec la sortie standard", | ||
"python.snippet.launch.pyspark.label": "Python : PySpark", | ||
"python.snippet.launch.pyspark.description": "Déboguer PySpark", | ||
"python.snippet.launch.module.label": "Python: Module", | ||
"python.snippet.launch.module.description": "Déboguer un module Python", | ||
"python.snippet.launch.terminal.label": "Python : Terminal (intégré)", | ||
"python.snippet.launch.terminal.description": "Déboguer un programme Python avec la console intégrée", | ||
"python.snippet.launch.externalTerminal.label": "Python : Terminal (externe)", | ||
"python.snippet.launch.externalTerminal.description": "Déboguer un programme Python avec une console externe", | ||
"python.snippet.launch.django.label": "Python : Django", | ||
"python.snippet.launch.django.description": "Déboguer une application Django", | ||
"python.snippet.launch.flask.label": "Python : Flask (0.11.x ou supérieur)", | ||
"python.snippet.launch.flask.description": "Déboguer une application Flask", | ||
"python.snippet.launch.flaskOld.label": "Python : Flask (0.10.x ou antérieur)", | ||
"python.snippet.launch.flaskOld.description": "Déboguer une application Flask (0.10.x ou antérieur)", | ||
"python.snippet.launch.pyramid.label": "Python : application Pyramid", | ||
"python.snippet.launch.pyramid.description": "Déboguer une application Pyramid", | ||
"python.snippet.launch.watson.label": "Python: Application Watson", | ||
"python.snippet.launch.watson.description": "Déboguer une Application Watson", | ||
"python.snippet.launch.attach.label": "Python: Attacher", | ||
"python.snippet.launch.attach.description": "Attacher le débogueur pour un debugging distant", | ||
"python.snippet.launch.scrapy.label": "Python : Scrapy", | ||
"python.snippet.launch.scrapy.description": "Scrapy avec un terminal intégré" | ||
} |