Supported Locales

Updated: last quarter · 3 min read

Deprecated

These docs cover the legacy CLI (v0). The current CLI is v1. See the current CLI docs

The CLI supports 100+ languages and regional variants.

Universal Support

All languages use standard ISO 639-1 codes for consistency across platforms.

Common Languages#

The most frequently used locales:

LanguageCodeExample
English (US)en or en-USHello
SpanishesHola
FrenchfrBonjour
GermandeHallo
ItalianitCiao
PortugueseptOlá
Japanesejaこんにちは
Koreanko안녕하세요
Chinese (Simplified)zh or zh-CN你好
Chinese (Traditional)zh-TW你好
RussianruПривет
Arabicarمرحبا
Hindihiनमस्ते
DutchnlHallo
PolishplCześć

Regional Variants#

Specify regional dialects for precise localization:

json
{
  "locale": {
    "source": "en-US",
    "targets": ["en-GB", "es-ES", "es-MX", "pt-BR", "pt-PT", "fr-FR", "fr-CA"]
  }
}
  • en-US - United States
  • en-GB - United Kingdom
  • en-CA - Canada
  • en-AU - Australia
  • en-NZ - New Zealand

Example differences:

Keyen-USen-GB
colorColorColour
elevatorElevatorLift
apartmentApartmentFlat

All Supported Locales#

Complete list of ISO 639-1 language codes:

  • af - Afrikaans
  • ar - Arabic
  • bg - Bulgarian
  • bn - Bengali
  • ca - Catalan
  • cs - Czech
  • da - Danish
  • de - German
  • el - Greek
  • en - English
  • es - Spanish
  • et - Estonian
  • fa - Persian
  • fi - Finnish
  • fr - French
  • gu - Gujarati

Configuration#

Specify locales in your config file:

json
{
  "locale": {
    "source": "en",
    "targets": ["es", "fr", "de", "ja"]
  }
}

Or use regional variants:

json
{
  "locale": {
    "source": "en-US",
    "targets": ["en-GB", "es-ES", "es-MX", "pt-BR", "pt-PT"]
  }
}

RTL Language Support#

Right-to-left languages are fully supported:

  • ar - Arabic
  • he - Hebrew
  • fa - Persian
  • ur - Urdu

RTL Handling

The platform automatically detects RTL languages and applies proper text direction in the web editor.

Next Steps#