← Back to blog

Translating Japanese: 10 Pitfalls That Quietly Change the Meaning

Japanese is the language where a translation can be fluent, grammatical, confident, and wrong, with nothing in the output to tell you which. That is what makes it different from French or Spanish. When a translation from those goes bad, it usually goes bad loudly. When a translation from Japanese goes bad, it often reads beautifully.

Here is the shape of the problem, from a translator describing it on Hacker News:

Dalewyn on Hacker News, in a thread on how manga was translated for America.

Two clearly different Japanese phrases collapse into one English sentence. No error is raised. The translation looks complete. Information is simply gone.

A single Japanese sentence with an empty subject slot fanning out into three different valid English sentencesA single Japanese sentence with an empty subject slot fanning out into three different valid English sentences
The same two-word Japanese sentence, with three defensible English translations. Only context picks one.

This post walks through ten failure modes that show up when you translate into or out of Japanese. Each one gets a real example, an explanation of why it breaks, and a check you can run on a finished translation. If you are new to reading Japanese in the Latin alphabet, the romanizations below follow Hepburn.

Grammar: what the Japanese source does not say

Three of the most common failures have nothing to do with vocabulary. They happen because Japanese grammar leaves out information that English grammar requires, and something has to fill the gap.

1. The subject is missing, and the translator guesses

Japanese sentences routinely have no subject and no pronoun. The speaker assumes context supplies it. Take two words:

好きです。(suki desu)

That is a complete, natural Japanese sentence. It can mean "I like it," "I like you," or "she likes him," depending entirely on what came before. Nothing in the sentence narrows it down.

A machine translator has to output something, so it picks. It almost always picks "I like it," the most frequent reading in isolation. When the surrounding paragraph was about a third person, the output is now a confident, grammatical lie.

This gets worse the shorter the text is. One Hacker News commenter put the rule plainly: "the smaller the chunks of texts are the worse a computer will do". UI strings, button labels, chat messages, and subtitle lines are exactly the short, context-free chunks where Japanese leaves the most out.

The check: for every sentence in the English output that contains "I," "you," "he," "she," or "they," find the pronoun in the Japanese source. If it is not there, the translator inferred it. Confirm the inference against the paragraph around it.

2. Number is optional, and counters are not

Japanese nouns do not normally mark singular or plural. 猫がいます (neko ga imasu) is "there is a cat" and "there are cats" at the same time. Plural markers exist (たち, ら, and reduplication as in 人々) but they are optional and mostly limited to people. English forces a choice on every single noun, so every noun is a small guess.

Going the other direction, English forces a different problem. Japanese cannot say "three files" without attaching a counter, and the specific counter encodes the physical nature of the thing being counted:

Counter Used for Example
冊 (satsu) bound volumes 本を三冊 (hon o san-satsu), three books
枚 (mai) flat, thin things 紙を三枚 (kami o san-mai), three sheets of paper
本 (hon) long cylindrical things ペンを三本 (pen o san-bon), three pens
台 (dai) machines, vehicles 車を三台 (kuruma o san-dai), three cars
匹 (hiki) small animals 猫を三匹 (neko o san-biki), three cats

Note that 本 is both the word for "book" and the counter for pen-shaped objects, and that the reading changes with the number: 三本 is san-bon, not san-hon. "Three files" has no correct Japanese form until you know whether a file is a sheet of paper, a bound document, or an icon on a screen. There are generic fallbacks (三つ, 三個), but they read as vague in product copy. A translator working from a spreadsheet of UI strings does not know.

The check: search the Japanese output for every number. For each one, confirm the counter matches what the thing actually is in your product, not what the translator assumed it was.

3. The verb comes last, and so does the negation

Japanese is subject-object-verb, and the verb carries tense, politeness, and negation. All of it lands at the very end of the sentence:

彼は明日の会議に出席します。(kare wa ashita no kaigi ni shusseki shimasu), He will attend tomorrow's meeting.

彼は明日の会議に出席しません。(kare wa ashita no kaigi ni shusseki shimasen), He will not attend tomorrow's meeting.

The two sentences are identical until the final syllable. This is fine for a human reading a whole sentence. It breaks anything that processes Japanese in fragments: subtitle lines split across two frames, a UI string concatenated from two variables, a chat interface that streams a partial sentence, a translator paid per line who is working line by line.

It also means the English rendering has to restructure the whole sentence rather than translate through it. There is no way to start the English sentence until you have read the Japanese one to the end.

The check: never translate a Japanese sentence that has been split across two strings, two subtitle lines, or two table cells. Reassemble it first, then translate.

Register: the decisions Japanese forces you to make

English lets you write a sentence without deciding how you feel about the person you are writing to. Japanese does not. Every verb you choose encodes a social relationship, and there is no neutral option.

4. Politeness is a choice on every verb

One Hacker News commenter described Japanese speakers as effectively speaking four languages: "casual speech, normal polite desu/masu speech, humble speech, and keigo". That last pair is not quite a hierarchy: humble and respectful language are two directions rather than two rungs. But the count is right. The same request, "please check this," has at minimum these forms:

Form Japanese Reads as
Plain 確認して。(kakunin shite) A close friend, or a senior speaking to a junior
Polite (丁寧語) 確認してください。(kakunin shite kudasai) Neutral polite, safe with a stranger
Respectful (尊敬語) ご確認ください。(go-kakunin kudasai) To a customer, or to someone above you
Humble (謙譲語) ご確認いただけますか。(go-kakunin itadakemasu ka) Business email to a client
Four Japanese renderings of the English sentence "please check this", from plain to humble, each labelled with who you would say it toFour Japanese renderings of the English sentence "please check this", from plain to humble, each labelled with who you would say it to
The English source does not say which of these it means. Something has to decide, and by default that something is the training data.

An English source sentence carries none of that information. The translator has to supply it, and a machine supplies whatever its training data averaged out to. One commenter comparing the two on exactly this point wrote that "often times the tone from gpt4 are little bit 'rude'/direct or 'weird' in en to jp, deepl is as good as an example sentence they would put into a textbook".

Textbook polite is not always right either. Business Japanese is difficult enough that, as another commenter observed, "even Japanese themselves have to be instructed in how to use it when they enter corporate jobs". If you are sending a Japanese business email, the register is not a stylistic preference. It is the difference between a message that gets answered and one that gets forwarded to someone's manager.

This is the same failure mode that turns a translated cover letter into a desk reject, except that Japanese has four settings instead of two, and they are not a single scale.

The check: decide the register before you translate, not after. Then read the Japanese output and confirm that every sentence sits at the same level. Register that drifts mid-message is the single clearest sign of machine output.

5. There is no neutral word for "you"

English "you" is invisible. Japanese あなた (anata) is not. Depending on context it reads as distant, textbook-like, confrontational, or as what a wife calls her husband. It is a common default in English-to-Japanese machine output, and it is almost never what a Japanese writer would have used.

Japanese handles the second person in three other ways, in rough order of preference:

  1. Omit it entirely. お時間ありますか (o-jikan arimasu ka), literally "is there time," is the normal way to ask "do you have time?"
  2. Use the person's name plus さん. 田中さんはどう思いますか (Tanaka-san wa dō omoimasu ka), "what do you think, Tanaka-san," said directly to Tanaka.
  3. Use their title. 部長 (buchō, department head) instead of a pronoun.

Marketing copy is where this hurts most. English landing pages are built on "you." A direct rendering produces a Japanese page full of あなた that reads like a badly dubbed advertisement.

The check: count the occurrences of あなた in your Japanese output. In most business or marketing text, the correct number is zero or close to it.

6. Honorifics do not survive the trip

さん (-san), 様 (-sama), 先生 (-sensei), 先輩 (-senpai), 君 (-kun), ちゃん (-chan). Each one carries information English has no slot for.

田中さん (Tanaka-san) is the clearest case. It is gender-neutral. Every English option, "Mr. Tanaka" or "Ms. Tanaka," adds a fact the Japanese did not state. "Tanaka" alone drops the politeness and, in an English business context, reads as curt. Keeping "Tanaka-san" preserves everything but marks the text as a translation.

先輩 (senpai) is worse, because the English word does not exist. It means someone who entered the same school or company before you, and it carries an ongoing obligation in both directions. "Senior colleague" is the dictionary answer and it is flat. "Mentor" imports a relationship that may not be there.

There is no correct answer here. There is only a decision, and the decision has to be the same on every page.

The check: pick one policy per project (keep honorifics, drop them, or convert them) and grep for exceptions. Mixed policies within one document are the actual defect, not the policy you picked.

7. Speech style encodes gender, age, and role

Japanese fiction and dialogue use 役割語 (yakuwarigo), role language: the way a character speaks tells you who they are before they say anything about themselves. The first-person pronoun alone does a lot of work. 俺 (ore) is blunt and masculine, 僕 (boku) is softer and male, often younger or more reserved, 私 (watashi) is neutral-polite, わたくし (watakushi) is formal. Sentence-final particles and endings like ぜ, わ, and のよ layer gender and attitude on top, at least in standard Tokyo speech.

English has none of this, which means translating English dialogue into Japanese requires inventing it. Get it wrong and the character is miscast. The site Legends of Localization documents the result: a male character in Stardew Valley who switches between feminine and masculine speech, a demon who speaks in a feminine register, a Harry Potter character who sounds female in Japanese while female characters sound male.

None of this is a translation error in the usual sense. Every individual line is accurate. The character is just wrong.

The check: if you are localizing anything with a voice, a character, or even a brand persona, write a one-paragraph brief per speaker before translation starts: pronoun, politeness level, age, and relationship to the listener. Translators cannot infer this from an English string table, and they will guess differently on different days.

Try Fink for your next translation

See the translation, every change, and the why on one screen.

Open App

Vocabulary: words that look safe and are not

The last three failures are lexical. They happen because a word survives the trip looking intact while its meaning does not, in both directions.

8. Katakana loanwords are false friends

Japanese borrows heavily from English and then changes the meaning. Some are 和製英語 (wasei-eigo), English assembled in Japan. More often they are ordinary loanwords whose meaning drifted after borrowing. Either way they look like a free ride and they are traps in both directions.

Katakana Looks like Actually means
マンション (manshon) mansion a concrete apartment or condo, the step up from アパート
クレーム (kurēmu) claim complaint
サービス (sābisu) service free of charge, on the house (the ordinary sense survives too)
ナイーブ (naību) naive sensitive, innocent, mildly critical but without the English sting
コンセント (konsento) consent electrical outlet
スマート (sumāto) smart slim, slender
バイキング (baikingu) Viking buffet
Six katakana loanwords shown with the English word they resemble and the different thing they actually meanSix katakana loanwords shown with the English word they resemble and the different thing they actually mean
Each of these produces a real English word in a grammatical sentence, which is why nothing flags them.

A Japanese customer support log full of クレーム is a log of complaints, not insurance claims. A restaurant sign offering ドリンクはサービスです is offering a free drink. Machine translation handles the famous ones and misses the rest, and it misses them silently because the output is a real English word in a plausible sentence.

The check: in Japanese-to-English work, flag every katakana word that resolves to an English cognate and look it up in a Japanese dictionary rather than trusting the resemblance.

9. Over-translating what should have stayed in English

The opposite mistake, and it is just as common. Japanese software, games, and signage keep a large amount of English. Buttons say Save, Start, Cancel. Japanese readers expect that. Translating all of it into kanji makes a product read as amateur or old-fashioned.

Legends of Localization records a player's reaction to a Western game that translated the spell "Flash Heal" into 瞬間治療 (shunkan chiryō) rather than leaving it as katakana: "As soon as I saw that, I immediately got turned off." The translation was accurate. It was also wrong, because the genre convention in Japanese is that spell names stay phonetic.

The check: before translating a string table into Japanese, look at two or three comparable Japanese products in the same category and note which terms they left in English. Match the category convention rather than translating everything you can.

10. Set phrases that have no English counterpart at all

This is where the itadakimasu problem from the opening lives, and it is not limited to mealtimes.

  • お疲れ様です (otsukaresama desu) is what you say passing a colleague, a sign-off when you leave, a thank-you for work done, and a general acknowledgement that someone has been working. It is not the arrival greeting, which is おはようございます. It appears constantly in Japanese offices and has no English equivalent at any of those positions.
  • よろしくお願いします (yoroshiku onegaishimasu) closes almost every Japanese business email. It means something like "I am counting on your goodwill going forward." English business emails close with "Best regards," which carries none of that.
  • いただきます / ごちそうさま (itadakimasu / gochisōsama) are a matched pair, before and after the meal. English has at most one slot for both.

It is worth understanding why these resist translation rather than just noting that they do. As one commenter explains, いただきます is kenjōgo, humble language: the verb 頂く deliberately lowers the speaker relative to whoever provided the food. The politeness is built into the grammar of the verb itself, and English verbs have nowhere to put it.

Worth noting, too, that Japanese speakers do not treat these as universal rituals. Another commenter pushes back on exactly that flattening: many people say ごちそうさまでした on leaving more reliably than they say いただきます on being served, and television makes the custom look more uniform than it is. Translating a set phrase badly is one failure. Explaining it as a national rule is another.

The check: when you hit one of these, do not look for an equivalent phrase. Decide what the phrase is doing in this specific sentence (greeting, thanks, closing, acknowledgement) and write the English that does that job in that position.

When the output is fluent and wrong

Every pitfall above shares one property: the failure is invisible in the output. The English reads well. The Japanese reads well. Nothing is flagged.

Machine translation makes this worse, not better, because fluency has improved faster than accuracy. A Hacker News commenter working with Japanese put it exactly: "In my experience with Japanese, DeepL is good at making plausible but inaccurate sentences." Another, comparing DeepL against a prompted language model for Japanese-to-English, was blunter: "for Japanese to English translation, DeepL is hot garbage compared to a top class LLM with the right prompt."

Both are describing the same thing from different angles. Modern models are genuinely good at translation, and what they are best at is producing text that sounds like a person wrote it. On a language pair where the source systematically omits information, sounding right and being right come apart.

There is one check that catches most of it, and it is the one almost everybody skips. Translate the output back into the source language and read what comes back. Do not read it for awkwardness. Read it for what is missing. If the round trip loses the subject you meant, drops a clause, or comes back at a different politeness level, you have found the error before your reader does.

A tool that shows you the back translation and meaning notes alongside the translation turns these invisible failures into visible ones. Fink puts them on one screen for that reason, rather than making you run a second translation by hand. It does not make you a Japanese speaker. It tells you where to look.

And to be clear about the limits: no tool here replaces a native reader. DeepL is strong on Japanese and is widely used inside Japan. A good language model with a careful prompt is strong on long-form Japanese prose. Both will still produce fluent, confident, wrong output on the ten patterns above, because those patterns are about information that was never in the source text. A tool gets you to roughly 95 percent. The last 5 percent is a person.

The checklist

Run this on a finished translation, in either direction, before it ships.

  • Pronouns. For every "I," "you," "he," "she," "they" in the English, find the corresponding word in the Japanese. If it is not there, the translator inferred it. Verify against context.
  • Number. Every English plural came from a Japanese noun that did not mark plurality. Confirm each one.
  • Counters. Every number that counts objects takes a counter. Confirm each one matches the physical nature of the thing in your product, not what the translator assumed.
  • Split sentences. No Japanese sentence was translated while broken across two strings, two subtitle lines, or two table cells.
  • Register. One politeness level, chosen deliberately, consistent from first sentence to last.
  • あなた count. Close to zero in business and marketing text.
  • Honorific policy. One rule for the whole document, applied everywhere, with no exceptions left over from a different pass.
  • Speech style. Each speaker's pronoun and sentence endings are consistent with who that character is, across every line they have.
  • Katakana. Every katakana word that looks like an English word was checked in a dictionary, not assumed.
  • Untranslated English. The terms your competitors leave in English are left in English, and the ones they translate are translated.
  • Set phrases. Each one was rendered by its function in that position, not by a dictionary equivalent.
  • Back translation. Round-tripped and read for missing information, not for awkwardness.

Questions people ask about this

Why is Japanese so hard to translate into English? Because Japanese grammar omits information that English grammar requires. Subjects and pronouns are routinely left out, nouns do not mark singular or plural, and the verb carrying tense and negation arrives only at the end of the sentence. A translator has to supply all of that from context, and when the context is missing, the guess is invisible in the finished text.

Is it harder to translate Japanese to English, or English to Japanese? They are hard in opposite ways. Japanese to English means recovering information the source never stated: who did what, how many, to whom. English to Japanese means inventing information the source never needed: politeness level, speech style, counters, and how to address the reader. Neither direction is mechanical.

Can Google Translate or DeepL handle Japanese? Both produce fluent Japanese, and DeepL is generally rated better on the pair and is widely used in Japan. Fluency is not the problem. Both will confidently guess a subject, default to a single politeness level, and render katakana false friends as their English lookalikes, all without flagging any of it. Use them, then check the output against the list above.

Why do Japanese sentences have no subject? Because the subject is treated as understood from context, the way English drops it in "Sounds good" or "Been there." Japanese does it far more often and in far more positions, including in formal writing, so what looks to an English reader like a fragment is a complete, unremarkable sentence.

Do I need to keep honorifics like -san and -chan in English? It depends on the text, and the only real requirement is consistency. Keeping them preserves gender neutrality and politeness but marks the text as a translation, which is normal in manga and subtitles and unusual in business documents. Converting さん to "Mr." or "Ms." adds a gender claim the Japanese did not make. Pick one policy per project and apply it everywhere.

What is the single most useful check for a Japanese translation? Back translation. Translate the result back into the original language and read the round trip specifically for information that has gone missing, rather than for style. It catches dropped subjects, dropped clauses, and shifted register better than any other check you can run without a native speaker.

Sources and further reading

The translator quotes in this post are verbatim from public Hacker News comments: Dalewyn on translating itadakimasu and gochisousama, stevefan1999 on itadakimasu as kenjōgo, unsignedint on how the custom is actually used, TheDong on Japanese politeness levels, codyrobbins on business keigo, cehrlich on short-chunk translation, methou on English-to-Japanese register, CarVac and yesco on machine translation quality. The game localization examples come from Legends of Localization, Common Problems When Translating Games Into Japanese. For typography and layout constraints when publishing Japanese, the W3C's Requirements for Japanese Text Layout is the reference. For reading Japanese in the Latin alphabet, see Hepburn romanization; for why machine translation is fluent before it is accurate, see why LLMs are good at translation; and for back translation as a routine check, see how to use a translator to learn a language.