@@ -25,7 +25,7 @@ import { ILabelService } from '../../../../platform/label/common/label.js';
25
25
import { IListService } from '../../../../platform/list/browser/listService.js' ;
26
26
import { INotificationService , Severity } from '../../../../platform/notification/common/notification.js' ;
27
27
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' ;
29
29
import { ITerminalProfile , TerminalExitReason , TerminalIcon , TerminalLocation , TerminalSettingId } from '../../../../platform/terminal/common/terminal.js' ;
30
30
import { IWorkspaceContextService , IWorkspaceFolder } from '../../../../platform/workspace/common/workspace.js' ;
31
31
import { PICK_WORKSPACE_FOLDER_COMMAND_ID } from '../../../browser/actions/workspaceCommands.js' ;
@@ -148,17 +148,17 @@ export const terminalSendSignalCommand = async (accessor: ServicesAccessor, args
148
148
149
149
if ( ! signal ) {
150
150
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') } ,
160
160
{ type : 'separator' } ,
161
- { label : localize ( 'manualSignal' , 'Manually enter signal' ) , description : 'Enter custom signal name' }
161
+ { label : localize ( 'manualSignal' , 'Manually enter signal' ) }
162
162
] ;
163
163
164
164
const selected = await quickInputService . pick ( signalOptions , {
0 commit comments