Gemini Replies in the Wrong Language

You ask in Chinese, Gemini answers in English (or vice versa) — interface locale and explicit prompt language usually fix it.

You ask in Chinese (e.g., a request to summarize Apple’s earnings) and Gemini answers in English; or you ask in English and get Chinese. The model is fusing two signals — account default language vs prompt language — and when they conflict it leans on account default. That “overrides” your intent.

To consistently get the right language, align account + prompt + context.

Common causes

By frequency:

1. Account default language ≠ prompt language (most common)

Your Google account’s default language (accounts.google.com/language) sets Gemini’s “baseline assumption”. Chinese user with English account default → English replies.

How to judge:

accounts.google.com/language
What is "Default language"?

2. Interface language differs from account language

gemini.google.com’s UI language (top buttons / menus) may not match your account language. UI language influences Gemini too.

How to judge: what language are the UI buttons in?

3. Mixed-language prompt

A single sentence that mixes scripts (Chinese characters and English words inline together) confuses the model; it leans English (more training data).

How to judge: is your prompt one sentence with two scripts?

4. English document but you want Chinese output

Asking Gemini to summarize an English PDF — it inherits the document language by default.

How to judge: attachment / referenced content is English.

5. Browser locale mismatch

Browser Accept-Language HTTP header is read by Gemini. Chrome language differing from account language also nudges output.

How to judge:

chrome://settings/languages — top language?

6. Saved info / Personalization is silent on language

If you wrote saved info but didn’t specify “reply in Chinese”, Gemini falls back to other signals.

Shortest path to fix

Step 1: Explicitly specify language at the prompt’s start

Most reliable (~95% hit rate):

Please reply in Chinese: [your actual question]

Or:
Reply in Chinese. [your question]

Or:
[question]
(Must reply in Chinese)

“Reply in X” at the start beats at the end.

Step 2: Set Google account default language

Long-term fix:

accounts.google.com/language
Click "Default language" → choose your target language (e.g., Chinese (Simplified))
Save
Wait 1 min

Affects every Google product’s default language.

Step 3: Set UI language

gemini.google.com → avatar → Settings → Display language → Chinese

Keep UI language matching account language to avoid mixed signals.

Step 4: One language per prompt section

Bad vs good:

  • Bad (mixed; triggers English): A single sentence in your target language with English verbs and nouns spliced inline (e.g., asking in Chinese but with “summarize” and “this article about AI” embedded in the middle).
  • Good (single-script): Write the entire request in one language. If you want Chinese output, write the whole prompt in Chinese; if you want English output, write the whole prompt in English.

When you must include a foreign term, put it in quotes and keep the rest of the sentence in your target language:

Summarize the paper titled "Attention Is All You Need" and reply in Chinese.

Foreign words in quotes, base language remains primary.

Step 5: English doc, want Chinese summary — say so explicitly

This PDF is in English. Please summarize it in Chinese.

Or write the same instruction entirely in the target output language so the request and the desired reply share a script.

Gemini inherits document language by default — must override.

Step 6: Align browser language

Chrome → Settings → Languages → move target language to top
Restart browser

Sends the right Accept-Language header.

Step 7: Put language preference in Saved info

Settings → Personalization → add:
"Always reply in Chinese unless I switch to English explicitly."

Cross-session.

Step 8: Immediate correction

If the response is in the wrong language, immediately reply with a one-line correction in your target language, e.g.:

Please answer the previous question again, in Chinese.

Gemini switches back and stays in that language for the rest of the conversation.

Prevention

  • Put “Always reply in Chinese unless asked otherwise” in Saved info / Personalization
  • Align account + browser + UI languages to remove conflicting signals
  • Always lead prompts with “Reply in X” rather than ending with it
  • One language per prompt; quote foreign words instead of mixing
  • For English docs needing non-English output, explicitly state the output language

Tags: #Gemini #Debug #Troubleshooting