From f3665aaef98fb4ba79de24bbccfdc39c3b341c68 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Mon, 9 Jan 2023 13:16:31 -0800 Subject: [PATCH] Clarify profile -> terminal profile --- .../contrib/terminal/browser/terminalProfileQuickpick.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/terminal/browser/terminalProfileQuickpick.ts b/src/vs/workbench/contrib/terminal/browser/terminalProfileQuickpick.ts index 8b9ed75c0dd..25d51a1476a 100644 --- a/src/vs/workbench/contrib/terminal/browser/terminalProfileQuickpick.ts +++ b/src/vs/workbench/contrib/terminal/browser/terminalProfileQuickpick.ts @@ -232,7 +232,7 @@ export class TerminalProfileQuickpick { // possible so the message is optimized for a single path. const handle = this._notificationService.prompt( Severity.Warning, - nls.localize('unsafePathWarning', 'This profile uses a potentially unsafe path that can be modified by another user: {0}. Are you use you want to use it?', `"${unsafePaths.join(',')}"`), + nls.localize('unsafePathWarning', 'This terminal profile uses a potentially unsafe path that can be modified by another user: {0}. Are you use you want to use it?', `"${unsafePaths.join(',')}"`), [{ label: nls.localize('yes', 'Yes'), run: () => r(true)