$ recombobulate _
home / tips / set-claudes-response-language-with-the-language-setting
0

Set Claude's Response Language with the language Setting

bagwaa @bagwaa · Mar 26, 2026 · Configuration
set-claudes-response-language-with-the-language-setting

If you work in a language other than English, the language setting in settings.json tells Claude to respond in that language by default across all your sessions.

// ~/.claude/settings.json
{
  "language": "japanese"
}

Supported values are plain language names: "japanese", "spanish", "french", "german", "portuguese", "korean", "chinese", and so on. Claude treats this as a strong preference, so you can still ask questions in English and Claude will reply in the configured language.

The setting also affects push-to-talk voice dictation. When language is set and you enable /voice, the dictation engine is configured to expect that language, which improves transcription accuracy for non-English speech.

You can set this globally in user settings for a personal preference, or in project settings if the codebase documentation is written in a specific language and you want Claude to match it consistently:

// .claude/settings.json (for a French-language project)
{
  "language": "french"
}

There is no need to remind Claude of your language preference at the start of every session. Set it once and it applies everywhere.

One line removes the overhead of translating Claude's responses yourself.


via Claude Code Settings

~/recombobulate $ tip --comments --count=0

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
0
Switch to the Stable Update Channel with autoUpdatesChannel

The autoUpdatesChannel setting pins Claude Code to a stable release track that skips versions with major regressions.

bagwaa @bagwaa · 1 hour ago
0
Customize or Remove Claude's Git Attribution with the attribution Setting

The attribution setting lets you customize or completely remove Claude's Co-Authored-By trailer from git commits and pull requests.

bagwaa @bagwaa · 1 hour ago
0
Surface Team Messages at Startup with companyAnnouncements

The companyAnnouncements setting surfaces team messages to every developer at startup, directly in their Claude Code session.

bagwaa @bagwaa · 1 hour ago