Skip to content

Commit a75fefa

Browse files
committed
1 parent abc88f5 commit a75fefa

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/browser/actions/layoutActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ export class MoveFocusedViewAction extends Action {
697697
if (!(isViewSolo && currentLocation === ViewContainerLocation.Panel)) {
698698
items.push({
699699
id: '_.panel.newcontainer',
700-
label: nls.localize('moveFocusedView.newContainerInPanel', "New Panel Entry"),
700+
label: nls.localize({ key: 'moveFocusedView.newContainerInPanel', comment: ['Creates a new top-level tab in the panel.'] }, "New Panel Entry"),
701701
});
702702
}
703703

src/vs/workbench/browser/parts/views/viewsService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export class ViewsService extends Disposable implements IViewsService {
158158
constructor() {
159159
super({
160160
id: viewDescriptor.focusCommand ? viewDescriptor.focusCommand.id : `${viewDescriptor.id}.focus`,
161-
title: { original: `Focus on ${viewDescriptor.name} View`, value: localize('focus view', "Focus on {0} View", viewDescriptor.name) },
161+
title: { original: `Focus on ${viewDescriptor.name} View`, value: localize({ key: 'focus view', comment: ['{0} indicates the name of the view to be focused.'] }, "Focus on {0} View", viewDescriptor.name) },
162162
category: composite ? composite.name : localize('view category', "View"),
163163
menu: [{
164164
id: MenuId.CommandPalette,

0 commit comments

Comments
 (0)