Skip to content

Commit e6309b1

Browse files
Copilotbamurtaugh
andcommitted
Fix capitalization: Change "Coding Agent" to "coding agent" in chat UI
Co-authored-by: bamurtaugh <25310137+bamurtaugh@users.noreply.github.com>
1 parent 4c53ff7 commit e6309b1

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
{
7474
"type": "copilot-swe-agent",
7575
"name": "copilot",
76-
"displayName": "GitHub Copilot Coding Agent",
76+
"displayName": "GitHub Copilot coding agent",
7777
"description": "Chat session for GitHub Copilot coding agent",
7878
"when": "config.chat.agentSessionsViewLocation && config.chat.agentSessionsViewLocation != 'disabled'"
7979
}

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@
319319
"command.notifications.markPullRequestsAsDone.title": "Mark Pull Requests as Done",
320320
"command.notifications.configureNotificationsViewlet.title": "Configure...",
321321
"command.notification.chatSummarizeNotification.title": "Summarize With Copilot",
322-
"command.codingAgent.openSessionLog.title": "Open Coding Agent Session Log",
322+
"command.codingAgent.openSessionLog.title": "Open coding agent session log",
323323
"welcome.github.login.contents": {
324324
"message": "You have not yet signed in with GitHub\n[Sign in](command:pr.signin)",
325325
"comment": [

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ async function deferredActivate(context: vscode.ExtensionContext, showPRControll
413413
context.subscriptions.push(copilotRemoteAgentManager);
414414
if (vscode.chat?.registerChatSessionItemProvider) {
415415
const provider = new class implements vscode.ChatSessionContentProvider, vscode.ChatSessionItemProvider {
416-
label = vscode.l10n.t('GitHub Copilot Coding Agent');
416+
label = vscode.l10n.t('GitHub Copilot coding agent');
417417
provideChatSessionItems = async (token) => {
418418
return await copilotRemoteAgentManager.provideChatSessions(token);
419419
};

src/github/copilotRemoteAgent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ export class CopilotRemoteAgentManager extends Disposable {
454454

455455
// Create terminal with git commit command
456456
const terminal = vscode.window.createTerminal({
457-
name: 'GitHub Coding Agent',
457+
name: 'GitHub coding agent',
458458
cwd: repository.rootUri.fsPath,
459459
message: `\x1b[1m${vscode.l10n.t(COMMIT_YOUR_CHANGES)}\x1b[0m`
460460
});

webviews/components/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ function CancelCodingAgentButton({ canEdit, codingAgentEvent }: { canEdit: boole
183183

184184
if (canEdit) {
185185
actions.unshift({
186-
label: 'Cancel Coding Agent',
186+
label: 'Cancel coding agent',
187187
value: '',
188188
action: cancel
189189
});

webviews/sessionLogView/sessionView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const SessionHeader: React.FC<SessionHeaderProps> = ({ info, pullInfo }) => {
5757
return (
5858
<header className="session-header">
5959
<div className='session-header-title'>
60-
<h1>Coding Agent Session Log</h1>
60+
<h1>Coding agent session log</h1>
6161
<h2>{info.name}</h2>
6262

6363
{pullInfo && <>

0 commit comments

Comments
 (0)