How do I change language of messages? #9192
Replies: 6 comments 2 replies
-
I believe you just need to run the |
Beta Was this translation helpful? Give feedback.
-
Hi @AgainPsychoX . CppTools uses a mechanism provided by VS Code ( https://github.com/microsoft/vscode-nls, https://github.com/microsoft/vscode-nls-dev ) to select strings for the current language. If the language you are seeing in CppTools strings differs from VS Code's, could you open a bug against VS Code for this? (Which may end up being a bug in vscode-nls/vscode-nls-dev). One scenario I've seen this happen in is when a user downloads a language pack extension, switches to that language, then removes the language pack. VS Code reverts to English because the other language strings are no longer available, but does not change the language it provides to vscode-nls/vscode-nls-dev for CppTools. That is tracked by: microsoft/vscode#82791 It you haven't removed a language pack, perhaps there may be a similar VS Code bug where the default is simply non-English but VS Code displays its strings in English due to no language pack extension having been installed. VS Code should be ensuring the language is consistent between itself and extensions using vscode-nls/vscode-nls-dev. |
Beta Was this translation helpful? Give feedback.
-
I can add to this, since it also happened to me. Workarounds for this issue are:
I will also open an issue for that thing. |
Beta Was this translation helpful? Give feedback.
-
hi guys, I just follow someone advice, which is not reasonable but works
|
Beta Was this translation helpful? Give feedback.
-
Possibly related Stack Overflow question: Why isn't my display language setting working everywhere with the VS Code Cpptools extension? |
Beta Was this translation helpful? Give feedback.
-
I have the same problem. My VS Code's current language is Chinese. Output to console.log(process.env.VSCODE_NLS_CONFIG);
|
Beta Was this translation helpful? Give feedback.
-
I want to use English (which is used by entire VS Code except CppTools apparently) instead system wide Polish (on Windows 10).
I can't find easy switch. I don't think I have Polish language enabled anywhere for VS Code anyways too.
Beta Was this translation helpful? Give feedback.
All reactions