From f955ac578fcc269982a6a5d1d2ea03f83aec3ff5 Mon Sep 17 00:00:00 2001 From: Christiaan Arnoldus Date: Mon, 1 Sep 2025 10:15:38 +0200 Subject: [PATCH] Fix claudeCode.notFound translation key 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 3f438df0fc2..ac2e856f7a9 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,