Fix claudeCode.notFound translation key (#7571)

I think I saw someone post a screenshot where "errors.claudeCode.notFound" was shown untranslated.
This commit is contained in:
Christiaan Arnoldus 2025-09-01 14:53:14 +02:00 committed by GitHub
parent c97027427b
commit 97cfb962a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,