> ## Documentation Index
> Fetch the complete documentation index at: https://help.revenuehero.io/llms.txt
> Use this file to discover all available pages before exploring further.

# How to support multiple languages on your scheduler?

> Allow your prospects to read the scheduler through multiple languages.

The scheduler displays in the prospect's browser language by default. If the browser language isn't supported, it falls back to English. Prospects can also manually select from [supported languages](/routers/inbound/multi-language-support/#list-of-supported-languages) during interaction.

<Frame>
  <img src="https://mintcdn.com/revenuehero/YhChfmixKdN8nX7J/images/language_1.png?fit=max&auto=format&n=YhChfmixKdN8nX7J&q=85&s=a7f6be667e14d52dae5ceaf62490e0a7" alt="" width="2940" height="1584" data-path="images/language_1.png" />
</Frame>

# Set default language for a landing page

In order to change the default language from English for a specific landing page, here are the steps:

1. Pick the shortcode for the language of your choice from the [list](/routers/inbound/multi-language-support/#list-of-supported-languages) below.
2. Taking the example of French (code being **fr**), add `,locale : 'fr'` after the router ID in your RevenueHero code snippet on the page:

```text theme={null}
<script type="text/javascript" src="https://app.revenuehero.io/scheduler.min.js"></script>
<script type="text/javascript">
  window.hero = new RevenueHero({ routerId: 'xxx', locale:'fr' })
  hero.schedule('#form')
</script>
```

<Note>
  [Click here to understand more on installing the router script on your page](/routers/inbound/create-inbound-router#install-the-script)
</Note>

3. You're all set!

<Frame>
  <img src="https://mintcdn.com/revenuehero/YhChfmixKdN8nX7J/images/language_2.png?fit=max&auto=format&n=YhChfmixKdN8nX7J&q=85&s=e330c8f986802b8511360cdd48b64546" alt="" width="2940" height="1582" data-path="images/language_2.png" />
</Frame>

# List of supported languages

| Language           | Shortcode |
| :----------------- | :-------: |
| Arabic             |     ar    |
| Czech              |     cs    |
| Danish             |     da    |
| German             |     de    |
| Greek              |     el    |
| English  British   |   en-GB   |
| English - US       |   en-US   |
| Spanish - LATAM    |   es-419  |
| Spanish            |   es-ES   |
| Finnish            |     fi    |
| French             |     fr    |
| French - Canada    |   fr-CA   |
| Hebrew             |     he    |
| Hungarian          |     hu    |
| Indonesian         |     id    |
| Italian            |     it    |
| Japanese           |     ja    |
| Korean             |     ko    |
| Dutch              |     nl    |
| Norwegian          |     no    |
| Polish             |     pl    |
| Portuguese(Brazil) |   pt-BR   |
| Portuguese         |   pt-PT   |
| Romanian           |     ro    |
| Russian            |     ru    |
| Swedish            |   sv-SE   |
| Thai               |     tr    |
| Vietnamese         |     vi    |
| Chinese(Simple)    |   zh-CN   |
| Chinese(Hong Kong) |   zh-HK   |
| Chinese(Taiwan)    |   zh-TW   |
