Skip to content

Commit 19af311

Browse files
authored
Update a few more codebase/workspace strings (#5016)
* Update a few more codebase/workspace strings We should always mention that these are semantic indexes * Fix merge * Fix merge again :( * fix string * Reverse words
1 parent 9a69478 commit 19af311

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.nls.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"github.copilot.command.openUserPreferences": "Open User Preferences",
2929
"github.copilot.command.openMemoryFolder": "Open Memory Folder",
3030
"github.copilot.command.sendChatFeedback": "Send Chat Feedback",
31-
"github.copilot.command.buildRemoteWorkspaceIndex": "Build Workspace Index",
32-
"github.copilot.command.deleteExternalIngestWorkspaceIndex": "Delete External Ingest Workspace Index",
31+
"github.copilot.command.buildRemoteWorkspaceIndex": "Build Codebase Semantic Index",
32+
"github.copilot.command.deleteExternalIngestWorkspaceIndex": "Delete External Ingest Codebase Index",
3333
"github.copilot.viewsWelcome.individual.expired": "Your Copilot subscription has expired.\n\n[Review Copilot Settings](https://github.com/settings/copilot?editor=vscode)",
3434
"github.copilot.viewsWelcome.enterprise": "Contact your GitHub organization administrator to enable Copilot.",
3535
"github.copilot.viewsWelcome.offline": {

src/extension/workspaceChunkSearch/vscode-node/commands.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function register(accessor: ServicesAccessor): IDisposable {
2323
disposableStore.add(vscode.commands.registerCommand(buildRemoteIndexCommandId, onlyRunOneAtATime(async () => {
2424
await vscode.window.withProgress({
2525
location: vscode.ProgressLocation.Window,
26-
title: t`Building codebase index`,
26+
title: t`Building codebase semantic index`,
2727
}, async (progress, token) => {
2828
const triggerResult = await workspaceChunkSearch.triggerIndexing(
2929
'manual',
@@ -34,12 +34,12 @@ export function register(accessor: ServicesAccessor): IDisposable {
3434

3535
if (triggerResult.isError()) {
3636
if (triggerResult.err.id !== TriggerRemoteIndexingError.alreadyIndexed.id) {
37-
vscode.window.showWarningMessage(t`Could not build codebase index. ` + '\n\n' + triggerResult.err.userMessage);
37+
vscode.window.showWarningMessage(t`Could not build codebase semantic index. ` + '\n\n' + triggerResult.err.userMessage);
3838
return;
3939
}
4040
}
4141

42-
vscode.window.showInformationMessage(t`Codebase index ready to use.`);
42+
vscode.window.showInformationMessage(t`Codebase semantic index ready to use.`);
4343
});
4444
})));
4545

@@ -56,7 +56,7 @@ export function register(accessor: ServicesAccessor): IDisposable {
5656
disposableStore.add(vscode.commands.registerCommand('github.copilot.debug.collectWorkspaceIndexDiagnostics', async () => {
5757
vscode.window.withProgress({
5858
location: vscode.ProgressLocation.Window,
59-
title: t`Collecting workspace index diagnostics...`,
59+
title: t`Collecting codebase index diagnostics...`,
6060
}, async () => {
6161
const document = await vscode.workspace.openTextDocument({ language: 'markdown' });
6262
const editor = await vscode.window.showTextDocument(document);

0 commit comments

Comments
 (0)