How to Set VS Code Display Language to English in a Dev Container? #155457
Replies: 3 comments · 4 replies
-
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
-
Yes — you can enforce VS Code’s display language inside a Codespace regardless of the browser language. Add the following to your {
"customizations": {
"vscode": {
"settings": {
"locale": "en"
}
}
}
} When the Codespace starts, VS Code in the web UI will automatically apply this locale setting, overriding the browser’s default language. If the change doesn’t apply immediately, try rebuilding the container or reloading the Codespace ( |
Beta Was this translation helpful? Give feedback.
-
Great question! When you're using GitHub Codespaces with VS Code on the web, it indeed defaults to the browser's language settings. If you'd like to force the display language of VS Code to always be English, regardless of the browser’s display language, you can enforce that in the Codespace's environment by setting a few configuration options. Option 1: Set
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
Hi 👋🏻
When using VS Code on the web with a GitHub Codespace, it seems to use the browser's display language. Is there a way to always set the display language of VS Code to English, specifically through the dev container configuration?
For example, is there a setting or configuration in the
devcontainer.json
file or elsewhere that can enforce the display language to be English regardless of the browser's language?Any guidance or examples would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions