Python – How do I change the Python extension locale in VSCode?

How do I change the Python extension locale in VSCode?… here is a solution to the problem.

How do I change the Python extension locale in VSCode?

I

don’t know how to install the Python extension in VSCode in another language, specifically – I want it to be in English, but it is installed in the language of my operating system, i.e. Russian.

How do I install a Python extension in another language, or change the language to English?

VSCode installation is in English. My operating system is Windows 7.

I tried to google it without success.

~~~
My “locale.json” configuration:

"locale":"en" // Changes will not take effect until VS Code has been 

Solution

Ok, solved.

Apparently, the solution is to remove the “en” from “locale.json” and re-enter it. Restart VSCode. Python extensions are now in English.
“True” great design, Microsoft.

The detailed whole process is:

1 – Open VSCode

2 – Press Ctrl+Shift+P

3 – Type Configuration Display Language -> Press Enter

4 – Delete the current locale (“en” in my case) and enter the desired locale in

5 – Save the file

6 – Exit and reopen VSCode

7 – Enjoy extended fixed languages.

Related Problems and Solutions