fernandoescolar / vscode-solution-explorer

This is a Visual Studio Code extension that provides a (.sln) Visual Studio Solution explorer panel..
MIT License
352 stars 73 forks source link

Language of the OS #231

Closed ShalokShalom closed 1 year ago

ShalokShalom commented 2 years ago

Describe the bug A clear and concise description of what the bug is.

To Reproduce Steps to reproduce the behavior:

  1. Use language X on your OS
  2. Use language Y within VSCode
  3. Experience VSCode and all extensions using Y
  4. See that vscode-solution-explorer uses X in some parts:

Screenshots Screenshot_51

German results in English VSCode and German Garuda Linux.

Klassenbibliothek = Class library Konsolenapp = Console App

Environment (please complete the following information):

Additional context Add any other context about the problem here.

fernandoescolar commented 1 year ago
  1. Currently this extension does not support multiple languages :(
  2. To get the list of project types and other tasks, vscode-solution-explorer internally executes dotnet commands. In this case it is this: dotnet new list so it makes sense to get some literals in the X language.
ShalokShalom commented 1 year ago

Could we this reset to use English all over the place, instead?

fernandoescolar commented 1 year ago

It runs a command on your machine, it can't manage the language... and I wouldn't want to hard code the list of project types as you can have different project templates installed...