Skip to content

Commit

Permalink
update wording, add svg (#235668)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
sbatten and bhavyaus authored Dec 9, 2024
1 parent 8e1f20c commit d0e9b3a
Show file tree
Hide file tree
Showing 2 changed files with 518 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,10 @@ export const startEntries: GettingStartedStartEntryContent = [
const Button = (title: string, href: string) => `[${title}](${href})`;

const CopilotStepTitle = localize('gettingStarted.copilotSetup.title', "Use AI features with Copilot for free");
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 ?? '');
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 ?? '');
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 ?? '');
const CopilotSignedOutButton = Button(localize('setupCopilotButton.signIn', "Sign in to use Copilot"), `command:workbench.action.chat.triggerSetup?${encodeURIComponent(JSON.stringify([true]))}`);
const CopilotSignedInButton = Button(localize('setupCopilotButton.setup', "Setup Copilot"), `command:workbench.action.chat.triggerSetup?${encodeURIComponent(JSON.stringify([true]))}`);
const CopilotSignedOutButton = Button(localize('setupCopilotButton.signIn', "Sign in to Use Copilot"), `command:workbench.action.chat.triggerSetup?${encodeURIComponent(JSON.stringify([true]))}`);
const CopilotSignedInButton = Button(localize('setupCopilotButton.setup', "Set Up Copilot"), `command:workbench.action.chat.triggerSetup?${encodeURIComponent(JSON.stringify([true]))}`);
const CopilotCompleteButton = Button(localize('setupCopilotButton.chatWithCopilot', "Chat with Copilot"), 'command:workbench.action.chat.open');

function createCopilotSetupStep(id: string, button: string, when: string, includeTerms: boolean): BuiltinGettingStartedStep {
Expand All @@ -228,9 +228,8 @@ function createCopilotSetupStep(id: string, button: string, when: string, includ
description,
when,
media: {
type: 'markdown',
path: 'empty'
}
type: 'svg', altText: 'VS Code Copilot multi file edits', path: 'multi-file-edits.svg'
},
};
}

Expand Down
Loading

0 comments on commit d0e9b3a

Please sign in to comment.