Skip to content

Commit abc0765

Browse files
committed
Localize
1 parent c9d1764 commit abc0765

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/vs/workbench/contrib/terminal/browser/terminalActions.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { ILabelService } from '../../../../platform/label/common/label.js';
2525
import { IListService } from '../../../../platform/list/browser/listService.js';
2626
import { INotificationService, Severity } from '../../../../platform/notification/common/notification.js';
2727
import { IOpenerService } from '../../../../platform/opener/common/opener.js';
28-
import { IPickOptions, IQuickInputService, IQuickPickItem, IQuickPickSeparator, QuickPickItem } from '../../../../platform/quickinput/common/quickInput.js';
28+
import { IPickOptions, IQuickInputService, IQuickPickItem, QuickPickItem } from '../../../../platform/quickinput/common/quickInput.js';
2929
import { ITerminalProfile, TerminalExitReason, TerminalIcon, TerminalLocation, TerminalSettingId } from '../../../../platform/terminal/common/terminal.js';
3030
import { IWorkspaceContextService, IWorkspaceFolder } from '../../../../platform/workspace/common/workspace.js';
3131
import { PICK_WORKSPACE_FOLDER_COMMAND_ID } from '../../../browser/actions/workspaceCommands.js';
@@ -148,17 +148,17 @@ export const terminalSendSignalCommand = async (accessor: ServicesAccessor, args
148148

149149
if (!signal) {
150150
const signalOptions: QuickPickItem[] = [
151-
{ label: 'SIGINT', description: 'Interrupt process (Ctrl+C)' },
152-
{ label: 'SIGTERM', description: 'Terminate process gracefully' },
153-
{ label: 'SIGKILL', description: 'Force kill process' },
154-
{ label: 'SIGSTOP', description: 'Stop process' },
155-
{ label: 'SIGCONT', description: 'Continue process' },
156-
{ label: 'SIGHUP', description: 'Hangup' },
157-
{ label: 'SIGQUIT', description: 'Quit process' },
158-
{ label: 'SIGUSR1', description: 'User-defined signal 1' },
159-
{ label: 'SIGUSR2', description: 'User-defined signal 2' },
151+
{ label: 'SIGINT', description: localize('SIGINT', 'Interrupt process (Ctrl+C)') },
152+
{ label: 'SIGTERM', description: localize('SIGTERM', 'Terminate process gracefully') },
153+
{ label: 'SIGKILL', description: localize('SIGKILL', 'Force kill process') },
154+
{ label: 'SIGSTOP', description: localize('SIGSTOP', 'Stop process') },
155+
{ label: 'SIGCONT', description: localize('SIGCONT', 'Continue process') },
156+
{ label: 'SIGHUP', description: localize('SIGHUP', 'Hangup') },
157+
{ label: 'SIGQUIT', description: localize('SIGQUIT', 'Quit process') },
158+
{ label: 'SIGUSR1', description: localize('SIGUSR1', 'User-defined signal 1') },
159+
{ label: 'SIGUSR2', description: localize('SIGUSR2', 'User-defined signal 2') },
160160
{ type: 'separator' },
161-
{ label: localize('manualSignal', 'Manually enter signal'), description: 'Enter custom signal name' }
161+
{ label: localize('manualSignal', 'Manually enter signal') }
162162
];
163163

164164
const selected = await quickInputService.pick(signalOptions, {

0 commit comments

Comments
 (0)