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

es-ES vs es-419: why one Spanish is rarely enough

Spanish is spoken across two continents by people who read the same alphabet and largely the same grammar, which makes it tempting to treat it as one target language. In practice, most localization projects that ship to both Spain and Latin America end up asking a translator, at some point, whether a line should say ordenador or computadora. The answer depends on which Spanish they are writing.

This is not a dialect curiosity — it shapes word choice, address forms, and eventually whether you ship one file or two.

What the language tags actually mean

BCP 47, the tagging system behind locale codes like en-US or ja-JP, gives Spanish a plain base tag: es. Region subtags narrow it: es-ES is Spanish as used in Spain, es-419 is Spanish for Latin America and the Caribbean as a region, and es-MX, es-AR, es-CO, and so on identify a single country within that region.

The 419 in es-419 is not a country code — it is a UN M49 numeric code for the Latin America and Caribbean region as a whole. It exists precisely because most localization work does not target individual Spanish-speaking countries separately; it targets one neutral variant meant to read acceptably across the region.

Where the two varieties actually diverge

Vocabulary differences are the most visible: a computer is ordenador in Spain and computadora across most of Latin America; a mobile phone is móvil in Spain and celular in Latin America; to drive a car uses conducir in Spain and manejar in much of Latin America. None of these are errors in either direction — they are simply the standard word in that variety.

The address-form split matters just as much for a game with dialogue. Spain uses tú for informal 'you' and vosotros for informal 'you all', with its own verb conjugations. Most of Latin America has dropped vosotros from everyday speech in favor of ustedes for both formal and informal plural 'you', and several countries — notably in Central America and the Río de la Plata region — use vos instead of tú for informal singular 'you', which carries its own verb forms (vos sabés rather than tú sabes). A script written with vosotros embedded in it will read as distinctly foreign to a Latin American player, and vice versa.

One neutral variant, or two full localizations

Given the divergence, teams generally choose between three approaches. Shipping only es-ES targets Spain accurately but reads as noticeably foreign — sometimes distractingly so — to Latin American players, who make up the larger population of Spanish speakers. Shipping only es-419 is the reverse: broadly acceptable across Latin America, but occasionally strikes Spanish players as slightly off in word choice or register.

The third option is shipping both es-ES and es-419 as separate localizations. This costs roughly double the translation and QA work of a single variant, since every line is translated and reviewed twice, but it removes the compromise entirely. Whether that cost is worth it depends mostly on how large your Latin American and Spain audiences are relative to each other, and how conspicuous the vocabulary gap would be in your specific text — a menu with a handful of short labels tolerates a compromise far better than dialogue-heavy narrative text does.

Practical guidance for a first pass

If you can only ship one variant, es-419 is the more common starting point for games, simply because it targets the larger combined population of Spanish-speaking countries outside Spain. Whichever you choose, be explicit about it in your localization files and tag it correctly — a bare es tag with no region leaves translators guessing which vocabulary and address form to default to, and different translators will guess differently within the same file.

  • Tag files es-ES or es-419 explicitly; avoid a bare es tag for anything beyond a placeholder
  • Pick one address form (tú, vos, or usted/ustedes) per variant and keep it consistent across all dialogue
  • Flag region-specific vocabulary (ordenador/computadora, móvil/celular) in your style guide so every translator makes the same choice
  • Treat es-419 as a starting variant if resources only allow one, given its broader regional coverage

Related articles