quick access - 💄 empty result labels

This commit is contained in:
Benjamin Pasero
2020-04-02 11:06:04 +02:00
parent 6f558be495
commit 8aa72354f0
7 changed files with 7 additions and 7 deletions

View File

@@ -51,7 +51,7 @@ export abstract class BaseEditorQuickAccessProvider extends PickerQuickAccessPro
{
canAcceptInBackground: true,
noResultsPick: {
label: localize('noViewResults', "No editor matching"),
label: localize('noViewResults', "No matching editors"),
groupId: -1
}
}

View File

@@ -26,7 +26,7 @@ export class StartDebugQuickAccessProvider extends PickerQuickAccessProvider<IPi
) {
super(StartDebugQuickAccessProvider.PREFIX, {
noResultsPick: {
label: localize('noDebugResults', "No launch configuration matching")
label: localize('noDebugResults', "No matching launch configurations")
}
});
}

View File

@@ -63,7 +63,7 @@ export class CommandsQuickAccessProvider extends AbstractEditorCommandsQuickAcce
super({
showAlias: !Language.isDefaultVariant(),
noResultsPick: {
label: localize('noCommandResults', "No command matching"),
label: localize('noCommandResults', "No matching commands"),
commandId: ''
}
}, instantiationService, keybindingService, commandService, telemetryService, notificationService);

View File

@@ -39,7 +39,7 @@ export class ViewQuickAccessProvider extends PickerQuickAccessProvider<IViewQuic
) {
super(ViewQuickAccessProvider.PREFIX, {
noResultsPick: {
label: localize('noViewResults', "No view matching"),
label: localize('noViewResults', "No matching views"),
containerLabel: ''
}
});

View File

@@ -164,7 +164,7 @@ export class AnythingQuickAccessProvider extends PickerQuickAccessProvider<IAnyt
super(AnythingQuickAccessProvider.PREFIX, {
canAcceptInBackground: true,
noResultsPick: {
label: localize('noAnythingResults', "No result matching")
label: localize('noAnythingResults', "No matching results")
}
});
}

View File

@@ -68,7 +68,7 @@ export class SymbolsQuickAccessProvider extends PickerQuickAccessProvider<ISymbo
super(SymbolsQuickAccessProvider.PREFIX, {
canAcceptInBackground: true,
noResultsPick: {
label: localize('noSymbolResults', "No workspace symbol matching")
label: localize('noSymbolResults', "No matching workspace symbols")
}
});
}

View File

@@ -30,7 +30,7 @@ export class TasksQuickAccessProvider extends PickerQuickAccessProvider<IPickerQ
) {
super(TasksQuickAccessProvider.PREFIX, {
noResultsPick: {
label: localize('noTaskResults', "No task matching")
label: localize('noTaskResults', "No matching tasks")
}
});