Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler James Leonhardt <me@tylerleonhardt.com>2022-06-09 00:02:04 +0300
committerGitHub <noreply@github.com>2022-06-09 00:02:04 +0300
commitecfcde01f551e7945df7654c65160c0bbdf56695 (patch)
tree19fcad642c239ae5a4a12a7cff872ef0be71d8c0
parent28f119c72accafb3ddb0aff27cae53222d8768cb (diff)
Shorten name of separators (#151553)
shorten name
-rw-r--r--src/vs/workbench/contrib/localization/browser/localizationsActions.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vs/workbench/contrib/localization/browser/localizationsActions.ts b/src/vs/workbench/contrib/localization/browser/localizationsActions.ts
index 5d51fb89d0f..5bdb7500724 100644
--- a/src/vs/workbench/contrib/localization/browser/localizationsActions.ts
+++ b/src/vs/workbench/contrib/localization/browser/localizationsActions.ts
@@ -45,7 +45,7 @@ export class ConfigureDisplayLanguageAction extends Action2 {
qp.placeholder = localize('chooseLocale', "Select Display Language");
if (installedLanguages?.length) {
- const items: Array<ILanguagePackItem | IQuickPickSeparator> = [{ type: 'separator', label: localize('installed', "Installed languages") }];
+ const items: Array<ILanguagePackItem | IQuickPickSeparator> = [{ type: 'separator', label: localize('installed', "Installed") }];
qp.items = items.concat(installedLanguages);
}
@@ -62,7 +62,7 @@ export class ConfigureDisplayLanguageAction extends Action2 {
if (newLanguages.length) {
qp.items = [
...qp.items,
- { type: 'separator', label: localize('available', "Available languages") },
+ { type: 'separator', label: localize('available', "Available") },
...newLanguages
];
}