Visual Studio Code - 日本語化 - 日本語化できなくなった
- 1. 概要
- 2. 日本語化
- 3. 戻らない
1. 概要
大体、「Visual Studio Code」の大掛かりな更新が発生して、適用すると日本語化したものがご破算になります。
2. 日本語化
もう一度、日本語化するには、Ctrl+Shift+P でコマンドウィンドウを開いて
「日本語」を選択して
もう一度、コマンドウィンドウを開いて「Reload Window」で再起動すれば、日本語に戻ります。
3. 戻らない
ところが、バージョン「1.74.1」にアップグレードした直後、英語表示になったので、日本語に戻そうと、前項の手順を行うと。
何やら、エラーになりおって、日本語化できない。

ここは、素直に「Open Runtime Setting」をクリックします。
「Windows」の間と
C:\Users\ユーザ名\.vscode\argv.json
わたしの場合は、下記のようになっておりました(一部伏字)。
// This configuration file allows you to pass permanent command line arguments to VS Code.
// Only a subset of arguments is currently supported to reduce the likelyhood of breaking
// the installation.
//
// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT
//
// NOTE: Changing this file requires a restart of VS Code.
{
// Use software rendering instead of hardware accelerated rendering.
// This can help in cases where you see rendering issues in VS Code.
// "disable-hardware-acceleration": true,
// Enabled by default by VS Code to resolve color issues in the renderer
// See https://github.com/Microsoft/vscode/issues/51791 for details
// "disable-color-correct-rendering": true,
// Allows to disable crash reporting.
// Should restart the app if the value is changed.
"enable-crash-reporter": true,
// Unique id used for correlating crash reports sent from this instance.
// Do not edit this value.
"crash-reporter-id": "伏字",
"locale": "ja",
"workbench.action.toggleSidebarVisibility":,
// Allows to disable crash reporting.
// Should restart the app if the value is changed.
// Unique id used for correlating crash reports sent from this instance.
// Do not edit this value.,
// Allows to disable crash reporting.
// Should restart the app if the value is changed.
// Unique id used for correlating crash reports sent from this instance.
// Do not edit this value.
}
こういうときは、「{}」以外の、すべての行をコメントアウトして、再起動するですじゃ。
その上で、日本語設定すると、勝手に再起動せろ、言ってきますし、再起動すれば、「argv.json」に適切な書き込みをしたうえで、起動してくれて、日本語化までできます。
|
|