Skip to content

Commit

Permalink
Fix default translation of Close Editor command (#13412)
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew committed Mar 21, 2024
1 parent 44fbdb0 commit c293554
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/core/src/common/nls.ts
Expand Up @@ -83,7 +83,9 @@ class LocalizationKeyProvider {

private preferredKeys = new Set([
// We only want the `File` translation used in the menu
'vscode/fileActions.contribution/filesCategory'
'vscode/fileActions.contribution/filesCategory',
// Needed for `Close Editor` translation
'vscode/editor.contribution/closeEditor'
]);
private data = this.buildData();

Expand Down

0 comments on commit c293554

Please sign in to comment.