This repository was archived by the owner on May 20, 2026. It is now read-only.
Update a few more codebase/workspace strings#5016
Merged
Merged
Conversation
We should always mention that these are semantic indexes
Contributor
There was a problem hiding this comment.
Pull request overview
Updates user-facing strings related to workspace/codebase indexing so the UI more clearly describes the indexing feature (intended to be communicated as semantic indexes).
Changes:
- Updated the build-index progress/warning messages in the workspace chunk search command.
- Updated command titles in
package.nls.jsonto include “Semantic Codebase Index” terminology.
Show a summary per file
| File | Description |
|---|---|
| src/extension/workspaceChunkSearch/vscode-node/commands.ts | Adjusts progress and warning strings shown while triggering remote workspace indexing. |
| package.nls.json | Renames command titles to reference “Semantic Codebase Index”. |
Copilot's findings
Comments suppressed due to low confidence (1)
src/extension/workspaceChunkSearch/vscode-node/commands.ts:38
- The warning message uses “remote workspace index” and includes a trailing space before the concatenation. Given the command label is “Build Semantic Codebase Index”, it would be clearer to use the same “semantic codebase index” phrasing here and drop the extra trailing space to avoid odd formatting in the notification.
if (triggerResult.isError()) {
if (triggerResult.err.id !== TriggerRemoteIndexingError.alreadyIndexed.id) {
vscode.window.showWarningMessage(t`Could not build remote workspace index. ` + '\n\n' + triggerResult.err.userMessage);
return;
- Files reviewed: 2/2 changed files
- Comments generated: 2
roblourens
previously approved these changes
Apr 6, 2026
Contributor
Author
|
Sorry I realized I messed up the merge with some of these strings. Need a re-review |
bryanchen-d
approved these changes
Apr 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We should always mention that these are semantic indexes