Fix redundant aliases in command palette
This commit is contained in:
parent
6c4e2f9251
commit
e585587e67
|
@ -1,5 +1,6 @@
|
|||
import "./fill/require";
|
||||
import * as paths from "./fill/paths";
|
||||
import "./fill/platform";
|
||||
import "./fill/storageDatabase";
|
||||
import "./fill/windowsService";
|
||||
import "./fill/environmentService";
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
import * as platform from "vs/base/common/platform";
|
||||
|
||||
// Use en instead of en-US since that's vscode default and it uses
|
||||
// that to determine whether to output aliases which will be redundant.
|
||||
if (platform.locale === "en-US") {
|
||||
// tslint:disable-next-line no-any to override const
|
||||
(platform as any).locale = "en";
|
||||
}
|
||||
if (platform.language === "en-US") {
|
||||
// tslint:disable-next-line no-any to override const
|
||||
(platform as any).language = "en";
|
||||
}
|
Loading…
Reference in New Issue