Skip to content

Commit

Permalink
Task description: "User settings" -> "User"
Browse files Browse the repository at this point in the history
Fixes #89448
  • Loading branch information
alexr00 committed Nov 12, 2021
1 parent 8215e18 commit a341134
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3009,7 +3009,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
public getTaskDescription(task: Task | ConfiguringTask): string | undefined {
let description: string | undefined;
if (task._source.kind === TaskSourceKind.User) {
description = nls.localize('taskQuickPick.userSettings', 'User Settings');
description = nls.localize('taskQuickPick.userSettings', 'User');
} else if (task._source.kind === TaskSourceKind.WorkspaceFile) {
description = task.getWorkspaceFileName();
} else if (this.needsFolderQualification()) {
Expand Down

0 comments on commit a341134

Please sign in to comment.