Skip to content

chat: lowercase 'artifacts' in artifacts widget header#315150

Open
mokashang wants to merge 1 commit into
microsoft:mainfrom
mokashang:chat/309415-lowercase-artifacts
Open

chat: lowercase 'artifacts' in artifacts widget header#315150
mokashang wants to merge 1 commit into
microsoft:mainfrom
mokashang:chat/309415-lowercase-artifacts

Conversation

@mokashang
Copy link
Copy Markdown

Lowercases the artifacts count label in the chat artifacts widget header so it visually aligns with the adjacent lowercase "file change" label.

Per @roblourens in #309415: "I would probably go lowercase on artifacts".

Change

src/vs/workbench/contrib/chat/browser/widget/chatArtifactsWidget.ts

-    ? localize('chat.artifacts.one', "1 Artifact")
-    : localize('chat.artifacts.count', "{0} Artifacts", data.totalCount);
+    ? localize('chat.artifacts.one', "1 artifact")
+    : localize('chat.artifacts.count', "{0} artifacts", data.totalCount);

The localize keys are unchanged; only the source English strings change.

How to test

  1. Open a chat session that produces multiple artifacts (e.g. via an agent that emits files).
  2. Confirm the artifacts widget header now reads N artifacts (or 1 artifact) instead of N Artifacts.
  3. Confirm the header still aligns visually with the lowercase "file change" badge.

Closes #309415

Aligns the artifacts count label casing with the adjacent "file change"
label, which is rendered lowercase. Maintainer indicated this preference
in microsoft#309415.

Closes microsoft#309415
Copilot AI review requested due to automatic review settings May 8, 2026 01:37
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the chat artifacts widget header text in the VS Code workbench chat UI to use lowercase “artifact(s)”, aligning its casing with the neighboring lowercase “file change” label.

Changes:

  • Lowercase the singular label from “1 Artifact” to “1 artifact”.
  • Lowercase the plural label from “{0} Artifacts” to “{0} artifacts” while keeping localization keys unchanged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Inconsistent casing between "file change" and "Artifacts"

3 participants