Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export class ChatSetupContribution extends Disposable implements IWorkbenchContr
constructor() {
super({
id: 'workbench.action.chat.triggerSetupForceSignIn',
title: localize2('forceSignIn', "Sign in to use AI features")
title: localize2('forceSignIn', "Sign in to use GitHub Copilot")
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export class ChatSetup {
}

if (this.context.state.entitlement === ChatEntitlement.Unknown || options?.forceSignInDialog) {
return localize('signIn', "Sign in to use AI Features");
return localize('signIn', "Sign in to use GitHub Copilot");
}

return localize('startUsing', "Start using AI Features");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ export class OnboardingVariationA extends Disposable implements IOnboardingServi
title.textContent = localize('onboarding.signIn.heroTitle', "Welcome to VS Code");

const subtitle = append(contentMain, $('p.onboarding-a-signin-subtitle'));
subtitle.textContent = localize('onboarding.signIn.heroSubtitle', "Sign in to continue with AI-powered development.");
subtitle.textContent = localize('onboarding.signIn.heroSubtitle', "Sign in to use GitHub Copilot.");

const actions = append(contentMain, $('.onboarding-a-signin-actions'));

Expand Down
Loading