From 109c0790d28745147cec57c0ae5bae2b8364cfad Mon Sep 17 00:00:00 2001 From: Megan Rogge Date: Tue, 21 Sep 2021 10:00:28 -0700 Subject: [PATCH] fix #133118 --- .../terminal/common/terminalConfiguration.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts b/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts index 72e9407c0e7..c62597c3d32 100644 --- a/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts +++ b/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts @@ -11,14 +11,14 @@ import { isMacintosh, isWindows } from 'vs/base/common/platform'; import { Registry } from 'vs/platform/registry/common/platform'; const terminalDescriptors = '\n- ' + [ - localize('cwd', "`\${cwd}`: the terminal's current working directory"), - localize('cwdFolder', "`\${cwdFolder}`: the terminal's current working directory, displayed for multi-root workspaces or in a single root workspace when the value differs from the initial working directory. This will not be displayed for Windows."), - localize('workspaceFolder', "`\${workspaceFolder}`: the workpsace in which the terminal was launched"), - localize('local', "`\${local}`: indicates a local terminal in a remote workspace"), - localize('process', "`\${process}`: the name of the terminal process"), - localize('separator', "`\${separator}`: a conditional separator (\" - \") that only shows when surrounded by variables with values or static text."), - localize('sequence', "`\${sequence}`: the name provided to xterm.js by the process"), - localize('task', "`\${task}`: indicates this terminal is associated with a task"), + '`\${cwd}`: ' + localize("cwd", "the terminal's current working directory"), + '`\${cwdFolder}`: ' + localize('cwdFolder', "the terminal's current working directory, displayed for multi-root workspaces or in a single root workspace when the value differs from the initial working directory. This will not be displayed for Windows."), + '`\${workspaceFolder}`: ' + localize('workspaceFolder', "the workpsace in which the terminal was launched"), + '`\${local}`: ' + localize('local', "indicates a local terminal in a remote workspace"), + '`\${process}`: ' + localize('process', "the name of the terminal process"), + '`\${separator}`: ' + localize('separator', "a conditional separator (\" - \") that only shows when surrounded by variables with values or static text."), + '`\${sequence}`: ' + localize('sequence', "the name provided to xterm.js by the process"), + '`\${task}`: ' + localize('task', "indicates this terminal is associated with a task"), ].join('\n- '); // intentionally concatenated to not produce a string that is too long for translations let terminalTitleDescription = localize('terminalTitle', "Controls the terminal title. Variables are substituted based on the context:"); -- GitLab