Skip to content

Commit aa60541

Browse files
committed
fixes #100941
1 parent 63c38b1 commit aa60541

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

src/vs/workbench/contrib/debug/browser/debugActions.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ export class ConfigureAction extends AbstractDebugAction {
9898
launch = launches[0];
9999
} else {
100100
const picks = launches.map(l => ({ label: l.name, launch: l }));
101-
const picked = await this.quickInputService.pick<{ label: string, launch: ILaunch }>(picks, { activeItem: picks[0], placeHolder: nls.localize('selectWorkspaceFolder', "Select a workspace folder to create a launch.json file in or add it to the workspace config file") });
101+
const picked = await this.quickInputService.pick<{ label: string, launch: ILaunch }>(picks, {
102+
activeItem: picks[0],
103+
placeHolder: nls.localize({ key: 'selectWorkspaceFolder', comment: ['User picks a workspace folder or a workspace configuration file here. Workspace configuration files can contain settings and thus a launch.json configuration can be written into one.'] }, "Select a workspace folder to create a launch.json file in or add it to the workspace config file")
104+
});
102105
if (picked) {
103106
launch = picked.launch;
104107
}

src/vs/workbench/contrib/debug/browser/debugEditorActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ class ShowDebugHoverAction extends EditorAction {
247247
class StepIntoTargetsAction extends EditorAction {
248248

249249
public static readonly ID = 'editor.debug.action.stepIntoTargets';
250-
public static readonly LABEL = nls.localize('stepIntoTargets', "Step Into Targets...");
250+
public static readonly LABEL = nls.localize({ key: 'stepIntoTargets', comment: ['Step Into Targets lets the user step into an exact function he or she is interested in.'] }, "Step Into Targets...");
251251

252252
constructor() {
253253
super({

src/vs/workbench/contrib/debug/browser/replViewer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,10 +362,10 @@ export class ReplAccessibilityProvider implements IListAccessibilityProvider<IRe
362362
return localize('replValueOutputAriaLabel', "{0}", element.value);
363363
}
364364
if (element instanceof RawObjectReplElement) {
365-
return localize('replRawObjectAriaLabel', "Repl variable {0}, value {1}", element.name, element.value);
365+
return localize('replRawObjectAriaLabel', "Debug console variable {0}, value {1}", element.name, element.value);
366366
}
367367
if (element instanceof ReplGroup) {
368-
return localize('replGroup', "Repl group {0}, read eval print loop, debug", element.name);
368+
return localize('replGroup', "Debug console group {0}, read eval print loop, debug", element.name);
369369
}
370370

371371
return '';

0 commit comments

Comments
 (0)