Skip to content

Commit

Permalink
nls issues
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-grant-work committed Mar 7, 2022
1 parent 0d24681 commit 223c372
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/core/src/browser/common-frontend-contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,12 @@ export namespace CommonCommands {
export const PIN_TAB = Command.toDefaultLocalizedCommand({
id: 'workbench.action.pinEditor',
category: VIEW_CATEGORY,
label: 'Pin Tab'
label: 'Pin Editor'
});
export const UNPIN_TAB = Command.toDefaultLocalizedCommand({
id: 'workbench.action.unpinEditor',
category: VIEW_CATEGORY,
label: 'Unpin Tab'
label: 'Unpin Editor'
});
export const TOGGLE_MAXIMIZED = Command.toLocalizedCommand({
id: 'core.toggleMaximized',
Expand Down Expand Up @@ -660,12 +660,12 @@ export class CommonFrontendContribution implements FrontendApplicationContributi
});
registry.registerMenuAction(SHELL_TABBAR_CONTEXT_PIN, {
commandId: CommonCommands.PIN_TAB.id,
label: 'Pin',
label: nls.localizeByDefault('Pin'),
order: '7'
});
registry.registerMenuAction(SHELL_TABBAR_CONTEXT_PIN, {
commandId: CommonCommands.UNPIN_TAB.id,
label: 'Unpin',
label: nls.localizeByDefault('Unpin'),
order: '8'
});
registry.registerMenuAction(CommonMenus.HELP, {
Expand Down

0 comments on commit 223c372

Please sign in to comment.