Skip to content

Commit 475acb4

Browse files
sbattenbhavyaus
andauthored
update wording, add svg (microsoft#235668) (microsoft#235681)
* update wording add placeholder svg * small tweaks * moar tweaks * fix typo * match casing * Theme multi-file-edits * remove from multi-file-edits.svg * update multi-file-edits theme for improved consistency * update multi-file-edits.svg to use editor widget background color --------- Co-authored-by: bhavyaus <[email protected]>
1 parent 54b43c5 commit 475acb4

File tree

2 files changed

+518
-6
lines changed

2 files changed

+518
-6
lines changed

src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ export const startEntries: GettingStartedStartEntryContent = [
211211
const Button = (title: string, href: string) => `[${title}](${href})`;
212212

213213
const CopilotStepTitle = localize('gettingStarted.copilotSetup.title', "Use AI features with Copilot for free");
214-
const CopilotDescription = localize({ key: 'gettingStarted.copilotSetup.description', comment: ['{Locked="["}', '{Locked="]({0})"}'] }, "Write code faster and smarter with [Copilot]({0}) for free with your GitHub account.", product.defaultChatAgent?.documentationUrl ?? '');
214+
const CopilotDescription = localize({ key: 'gettingStarted.copilotSetup.description', comment: ['{Locked="["}', '{Locked="]({0})"}'] }, "Write code faster and smarter using [Copilot]({0}). With your GitHub account, get 2,000 code completions and 50 chat messages per month for free.", product.defaultChatAgent?.documentationUrl ?? '');
215215
const CopilotTermsString = localize({ key: 'copilotTerms', comment: ['{Locked="["}', '{Locked="]({0})"}', '{Locked="]({1})"}'] }, "By continuing, you agree to Copilot [Terms]({0}) and [Privacy Policy]({1}).", product.defaultChatAgent?.termsStatementUrl ?? '', product.defaultChatAgent?.privacyStatementUrl ?? '');
216-
const CopilotSignedOutButton = Button(localize('setupCopilotButton.signIn', "Sign in to use Copilot"), `command:workbench.action.chat.triggerSetup?${encodeURIComponent(JSON.stringify([true]))}`);
217-
const CopilotSignedInButton = Button(localize('setupCopilotButton.setup', "Setup Copilot"), `command:workbench.action.chat.triggerSetup?${encodeURIComponent(JSON.stringify([true]))}`);
216+
const CopilotSignedOutButton = Button(localize('setupCopilotButton.signIn', "Sign in to Use Copilot"), `command:workbench.action.chat.triggerSetup?${encodeURIComponent(JSON.stringify([true]))}`);
217+
const CopilotSignedInButton = Button(localize('setupCopilotButton.setup', "Set Up Copilot"), `command:workbench.action.chat.triggerSetup?${encodeURIComponent(JSON.stringify([true]))}`);
218218
const CopilotCompleteButton = Button(localize('setupCopilotButton.chatWithCopilot', "Chat with Copilot"), 'command:workbench.action.chat.open');
219219

220220
function createCopilotSetupStep(id: string, button: string, when: string, includeTerms: boolean): BuiltinGettingStartedStep {
@@ -228,9 +228,8 @@ function createCopilotSetupStep(id: string, button: string, when: string, includ
228228
description,
229229
when,
230230
media: {
231-
type: 'markdown',
232-
path: 'empty'
233-
}
231+
type: 'svg', altText: 'VS Code Copilot multi file edits', path: 'multi-file-edits.svg'
232+
},
234233
};
235234
}
236235

0 commit comments

Comments
 (0)