Language guidesこの記事を日本語で読む

Japanese to English: what actually changes in your game text

Localizing from Japanese into English is often treated as the easy direction — English is the language most tooling and most translators default to. But the direction reverses most of the problems that show up going the other way, and introduces a few of its own. If your source of truth is Japanese, this is what to expect in the English output and in the UI it has to fit into.

Text expansion, not contraction

Japanese frequently expresses meaning in fewer characters than English needs for the same content, because a single kanji compound can replace what English spells out as a full word or phrase. Going from Japanese to English, strings tend to grow — often substantially for short UI labels, where a two- or three-character Japanese term can require a much longer English phrase to be equally precise and equally natural. UI built and tested only against Japanese source text, with no margin, is a near-guaranteed source of truncated or overflowing English labels.

Subjects and pronouns Japanese leaves out

Japanese is a pro-drop language: subjects, and often objects, are routinely omitted when they are clear from context. A line of dialogue can convey 'I'll go' or 'she'll go' with no pronoun present at all, relying on context, verb form, or sentence-final particles to disambiguate. English grammar does not allow this — every finite clause needs an explicit subject. A translator has to reconstruct who is doing what from context that may live several lines earlier, in a different file, or in game state the text alone does not carry. This is a common source of ambiguity bugs: two equally valid English subjects for the same Japanese line, chosen without full context, that read as a inconsistency once the scene plays out.

Honorific register has no direct equivalent

Japanese verb and sentence-ending forms encode a politeness register — from plain/casual speech to the polite -masu/-desu forms to formal keigo — as a grammatical requirement of nearly every sentence. English marks politeness through word choice, phrasing, and social convention, not through a parallel grammatical system, so there is no single English construction that reliably reproduces a given Japanese register. A translator has to represent register through indirect means: vocabulary formality, contractions versus full forms, sentence length, or explicit politeness markers like 'please' and 'sir' — an interpretive choice each time, not a mechanical substitution.

Name order and honorific suffixes

Japanese personal names are conventionally given family-name-first (surname, then given name), the reverse of English convention. Localizers have to decide, consistently across the project, whether to keep family-name-first order or invert it to given-name-first for an English-reading audience — and that decision has to be applied uniformly, including in any name-generation or player-input systems.

Japanese also attaches honorific suffixes to names in speech — such as -san, -kun, -chan, or -sama — each carrying information about respect, familiarity, age, or gender relationship between speaker and addressee. English has no equivalent suffix system. Localization teams generally choose either to drop the suffix and represent the relationship through dialogue tone instead, or to retain the suffix as-is for genre-savvy audiences; either choice needs to be applied consistently, not decided line by line.

Onomatopoeia English does not have

Japanese has an unusually large and productive system of mimetic words: giongo (sound-imitating words) and gitaigo (words describing states, textures, or manners that are not literal sounds — a character's gaze, a slippery surface, a heavy silence). English has true onomatopoeia but nothing close to the same range or productivity, and gitaigo in particular often has no lexicalized English word at all. Translators typically have to replace a single mimetic word with a descriptive phrase, an adjective, or a different sentence structure entirely — which is another common source of length growth, on top of the general expansion problem.

UI space designed for a more compact language

If your UI was designed and pixel-tested against Japanese source strings, its buttons, tabs, and labels are sized for that language's typical width — and English labels for the same concepts will often not fit without wrapping, truncation, or a font-size reduction that was never planned. Menu items, status labels, and short confirmation buttons are the most exposed, since they have the least room to begin with.

Practical checks

A few checks catch most of the direction-specific problems early:

  • Measure your longest expected English string per UI slot, not your Japanese source length, when sizing layout
  • Flag any Japanese line with no explicit subject for translator context notes rather than leaving the choice implicit
  • Decide and document name order and honorific-suffix handling once, project-wide, rather than per line
  • Read English dialogue back for consistent register — a character should not swing between formal and casual English with no in-story reason
  • Treat mimetic-word-heavy lines as expansion risks the same way you would treat a long compound sentence

Related articles