提交 977a603f 编写于 作者: I isidor

debug start view label polish #87162

上级 c4ed5444
......@@ -81,7 +81,7 @@ class OpenDebugPanelAction extends TogglePanelAction {
const viewContainer = Registry.as<IViewContainersRegistry>(ViewExtensions.ViewContainersRegistry).registerViewContainer({
id: VIEWLET_ID,
name: nls.localize('debugAndRun', "Debug and Run"),
name: nls.localize('runAndDebug', "Run and Debug"),
ctorDescriptor: { ctor: DebugViewPaneContainer },
icon: 'codicon-debug-alt',
order: 3
......
......@@ -76,12 +76,12 @@ export class StartView extends ViewPane {
this.secondMessageContainer.appendChild(secondMessageElement);
const setSecondMessage = () => {
secondMessageElement.textContent = localize('specifyHowToRun', "To further configure Debug and Run");
secondMessageElement.textContent = localize('specifyHowToRun', "To further configure Run and Debug");
this.clickElement = this.createClickElement(localize('configure', " create a launch.json file."), () => this.commandService.executeCommand(ConfigureAction.ID));
this.secondMessageContainer.appendChild(this.clickElement);
};
const setSecondMessageWithFolder = () => {
secondMessageElement.textContent = localize('noLaunchConfiguration', "To further configure Debug and Run, ");
secondMessageElement.textContent = localize('noLaunchConfiguration', "To further configure Run and Debug, ");
this.clickElement = this.createClickElement(localize('openFolder', " open a folder"), () => this.dialogService.pickFolderAndOpen({ forceNewWindow: false }));
this.secondMessageContainer.appendChild(this.clickElement);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册