From 97cfb962a0057669b9db007bd1ffcc3effc1b6a8 Mon Sep 17 00:00:00 2001 From: Christiaan Arnoldus Date: Mon, 1 Sep 2025 14:53:14 +0200 Subject: [PATCH] Fix claudeCode.notFound translation key (#7571) I think I saw someone post a screenshot where "errors.claudeCode.notFound" was shown untranslated. --- src/integrations/claude-code/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/integrations/claude-code/run.ts b/src/integrations/claude-code/run.ts index 3f438df0fc..ac2e856f7a 100644 --- a/src/integrations/claude-code/run.ts +++ b/src/integrations/claude-code/run.ts @@ -260,7 +260,7 @@ function attemptParseChunk(data: string): ClaudeCodeMessage | null { * Creates a user-friendly error message for Claude Code ENOENT errors */ function createClaudeCodeNotFoundError(claudePath: string, originalError: Error): Error { - const errorMessage = t("errors.claudeCode.notFound", { + const errorMessage = t("common:errors.claudeCode.notFound", { claudePath, installationUrl: CLAUDE_CODE_INSTALLATION_URL, originalError: originalError.message,