Consistantly use Getting Started Page to refer to walkthroughs in UI

This commit is contained in:
Jackson Kearl 2021-07-01 09:14:25 -06:00
parent cae4782b8d
commit 7304d31061
No known key found for this signature in database
GPG key ID: DA09A59C409FC400
2 changed files with 3 additions and 3 deletions

View file

@ -385,7 +385,7 @@ export class GettingStartedPage extends EditorPane {
id: x.id,
label: x.title,
detail: x.description,
})), { canPickMany: false, title: localize('pickWalkthroughs', "Open a Walkthrough") });
})), { canPickMany: false, title: localize('pickWalkthroughs', "Open Getting Started Page...") });
if (selection) {
this.runDispatchCommand('selectCategory', selection.id);
}
@ -841,7 +841,7 @@ export class GettingStartedPage extends EditorPane {
reset(leftColumn, startList.getDomElement());
reset(rightColumn, recentList.getDomElement());
reset(footer, $('p.showOnStartup', {}, showOnStartupCheckbox, $('label.caption', { for: 'showOnStartup' }, localize('welcomePage.showOnStartup', "Show welcome page on startup"))),
$('p.openAWalkthrough', {}, $('button.button-link', { 'x-dispatch': 'seeAllWalkthroughs' }, localize('openAWalkthrough', "Open a Walkthrough"))));
$('p.openAWalkthrough', {}, $('button.button-link', { 'x-dispatch': 'seeAllWalkthroughs' }, localize('openAWalkthrough', "Open Getting Started Page..."))));
recentList.setLimit(10);
}
setTimeout(() => this.categoriesPageScrollbar?.scanDomNode(), 50);

View file

@ -989,7 +989,7 @@ registerAction2(class extends Action2 {
super({
id: 'resetGettingStartedProgress',
category: 'Developer',
title: 'Reset Welcome Page Walkthrough Progress',
title: 'Reset Welcome Page Getting Started Progress',
f1: true
});
}