diff --git a/src/vs/workbench/browser/actions/helpActions.ts b/src/vs/workbench/browser/actions/helpActions.ts index 84267e485d4..b27e05fd5d5 100644 --- a/src/vs/workbench/browser/actions/helpActions.ts +++ b/src/vs/workbench/browser/actions/helpActions.ts @@ -57,16 +57,16 @@ class KeybindingsReferenceAction extends Action2 { class OpenIntroductoryVideosUrlAction extends Action2 { - static readonly ID = 'workbench.action.openIntroductoryVideosUrl'; + static readonly ID = 'workbench.action.openVideoTutorialsUrl'; static readonly AVAILABLE = !!product.introductoryVideosUrl; constructor() { super({ id: OpenIntroductoryVideosUrlAction.ID, title: { - value: localize('openIntroductoryVideosUrl', "Introductory Videos"), - mnemonicTitle: localize({ key: 'miIntroductoryVideos', comment: ['&& denotes a mnemonic'] }, "Introductory &&Videos"), - original: 'Introductory Videos' + value: localize('openVideoTutorialsUrl', "Video Tutorials"), + mnemonicTitle: localize({ key: 'miVideoTutorials', comment: ['&& denotes a mnemonic'] }, "&&Video Tutorials"), + original: 'Video Tutorials' }, category: CATEGORIES.Help, f1: true, diff --git a/src/vs/workbench/contrib/quickaccess/browser/quickAccess.contribution.ts b/src/vs/workbench/contrib/quickaccess/browser/quickAccess.contribution.ts index d6a175b43cd..2eb6197aa6a 100644 --- a/src/vs/workbench/contrib/quickaccess/browser/quickAccess.contribution.ts +++ b/src/vs/workbench/contrib/quickaccess/browser/quickAccess.contribution.ts @@ -57,6 +57,15 @@ MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, { order: 1 }); +MenuRegistry.appendMenuItem(MenuId.MenubarHelpMenu, { + group: '1_welcome', + command: { + id: ShowAllCommandsAction.ID, + title: localize({ key: 'miShowAllCommands', comment: ['&& denotes a mnemonic'] }, "Show All Commands") + }, + order: 2 +}); + MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, { group: '1_open', command: { diff --git a/src/vs/workbench/contrib/update/browser/update.contribution.ts b/src/vs/workbench/contrib/update/browser/update.contribution.ts index d10d7d865a1..20693049a5b 100644 --- a/src/vs/workbench/contrib/update/browser/update.contribution.ts +++ b/src/vs/workbench/contrib/update/browser/update.contribution.ts @@ -37,6 +37,6 @@ if (ShowCurrentReleaseNotesAction.AVAILABE) { id: ShowCurrentReleaseNotesAction.ID, title: localize({ key: 'miReleaseNotes', comment: ['&& denotes a mnemonic'] }, "&&Release Notes") }, - order: 4 + order: 5 }); } diff --git a/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution.ts b/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution.ts index a71f0ae47fe..0390762563b 100644 --- a/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution.ts +++ b/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.contribution.ts @@ -38,7 +38,7 @@ registerAction2(class extends Action2 { constructor() { super({ id: 'workbench.action.openWalkthrough', - title: localize('Welcome', "Welcome"), + title: localize({ key: 'miGetStarted', comment: ['&& denotes a mnemonic'] }, "&&Get Started"), category: localize('help', "Help"), f1: true, menu: { @@ -93,14 +93,14 @@ Registry.as(EditorExtensions.EditorPane).registerEditorPane EditorPaneDescriptor.create( GettingStartedPage, GettingStartedPage.ID, - localize('welcome', "Welcome") + localize('getStarted', "Get Started") ), [ new SyncDescriptor(GettingStartedInput) ] ); -const category = localize('welcome', "Welcome"); +const category = localize('getStarted', "Get Started"); registerAction2(class extends Action2 { constructor() { diff --git a/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.ts b/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.ts index 8c66c6c6397..4c8dc49852f 100644 --- a/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.ts +++ b/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStarted.ts @@ -821,7 +821,7 @@ export class GettingStartedPage extends EditorPane { this.categoriesSlide = $('.gettingStartedSlideCategories.gettingStartedSlide'); - const prevButton = $('button.prev-button.button-link', { 'x-dispatch': 'scrollPrev' }, $('span.scroll-button.codicon.codicon-chevron-left'), $('span.moreText', {}, localize('welcome', "Welcome"))); + const prevButton = $('button.prev-button.button-link', { 'x-dispatch': 'scrollPrev' }, $('span.scroll-button.codicon.codicon-chevron-left'), $('span.moreText', {}, localize('getStarted', "Get Started"))); this.stepsSlide = $('.gettingStartedSlideDetails.gettingStartedSlide', {}, prevButton); this.stepsContent = $('.gettingStartedDetailsContent', {}); diff --git a/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput.ts b/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput.ts index d0ba83e9546..0c3af000b79 100644 --- a/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput.ts +++ b/src/vs/workbench/contrib/welcome/gettingStarted/browser/gettingStartedInput.ts @@ -46,7 +46,7 @@ export class GettingStartedInput extends EditorInput { } override getName() { - return localize('welcome', "Welcome"); + return localize('getStarted', "Get Started"); } selectedCategory: string | undefined; diff --git a/src/vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent.ts b/src/vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent.ts index 8642221b899..b44c980d145 100644 --- a/src/vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent.ts +++ b/src/vs/workbench/contrib/welcome/gettingStarted/common/gettingStartedContent.ts @@ -261,9 +261,9 @@ export const walkthroughs: GettingStartedWalkthroughContent = [ { id: 'playground', title: localize('gettingStarted.playground.title', "Redefine your editing skills"), - description: localize('gettingStarted.playground.description.interpolated', "Want to code faster and smarter? Practice powerful code editing features in the interactive playground.\n{0}", Button(localize('openInteractivePlayground', "Open Interactive Playground"), 'command:toSide:workbench.action.showInteractivePlayground')), + description: localize('gettingStarted.playground.description.interpolated', "Want to code faster and smarter? Practice powerful code editing features in the interactive playground.\n{0}", Button(localize('openEditorPlayground', "Open Editor Playground"), 'command:toSide:workbench.action.showInteractivePlayground')), media: { - type: 'svg', altText: 'Interactive Playground.', path: 'interactivePlayground.svg' + type: 'svg', altText: 'Editor Playground.', path: 'interactivePlayground.svg' }, }, { diff --git a/src/vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough.ts b/src/vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough.ts index cf51db89e9d..05447bcd366 100644 --- a/src/vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough.ts +++ b/src/vs/workbench/contrib/welcome/walkThrough/browser/editor/editorWalkThrough.ts @@ -17,7 +17,7 @@ import { EditorResolution } from 'vs/platform/editor/common/editor'; const typeId = 'workbench.editors.walkThroughInput'; const inputOptions: WalkThroughInputOptions = { typeId, - name: localize('editorWalkThrough.title', "Interactive Playground"), + name: localize('editorWalkThrough.title', "Editor Playground"), resource: FileAccess.asBrowserUri('./vs_code_editor_walkthrough.md', require) .with({ scheme: Schemas.walkThrough, @@ -29,7 +29,7 @@ const inputOptions: WalkThroughInputOptions = { export class EditorWalkThroughAction extends Action { public static readonly ID = 'workbench.action.showInteractivePlayground'; - public static readonly LABEL = localize('editorWalkThrough', "Interactive Playground"); + public static readonly LABEL = localize('editorWalkThrough', "Interactive Editor Playground"); constructor( id: string, diff --git a/src/vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution.ts b/src/vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution.ts index abafd22e3f2..2105734a51f 100644 --- a/src/vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution.ts +++ b/src/vs/workbench/contrib/welcome/walkThrough/browser/walkThrough.contribution.ts @@ -23,14 +23,14 @@ Registry.as(EditorExtensions.EditorPane) .registerEditorPane(EditorPaneDescriptor.create( WalkThroughPart, WalkThroughPart.ID, - localize('walkThrough.editor.label', "Interactive Playground"), + localize('walkThrough.editor.label', "Playground"), ), [new SyncDescriptor(WalkThroughInput)]); Registry.as(Extensions.WorkbenchActions) .registerWorkbenchAction( SyncActionDescriptor.from(EditorWalkThroughAction), - 'Help: Interactive Playground', CATEGORIES.Help.value); + 'Help: Interactive Editor Playground', CATEGORIES.Help.value); Registry.as(EditorExtensions.EditorFactory).registerEditorSerializer(EditorWalkThroughInputSerializer.ID, EditorWalkThroughInputSerializer); @@ -49,7 +49,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarHelpMenu, { group: '1_welcome', command: { id: 'workbench.action.showInteractivePlayground', - title: localize({ key: 'miInteractivePlayground', comment: ['&& denotes a mnemonic'] }, "I&&nteractive Playground") + title: localize({ key: 'miPlayground', comment: ['&& denotes a mnemonic'] }, "Editor Playgrou&&nd") }, - order: 2 + order: 3 });