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

# Localization

> You can handle different languages within your applications

# Overview

The OwnID interface uses American English (en\_US) by default. If that’s fine, then you can skip this Localization page.

In order to configure your language(s), go to the `Branding → Button Look and Feel` page in the console. In the Language field, mark the checkboxes of all the languages in which your website interface can appear.

In case you have selected more than a language, you can specify which one will be active when the OwnID widget is initialized using the `language` parameter:

```javascript Example: Initializing OwnID in French theme={null}
ownid('init', {appId: 'yourAppId', language: 'fr'});
```

The following languages are supported:

| Target Language         | Code   |
| ----------------------- | ------ |
| Arabic                  | ar\_AR |
| Chinese (China)         | zh\_CN |
| English (Great Britain) | en\_GB |
| English (United States) | en\_US |
| French                  | fr     |
| German                  | de     |
| Indonesian              | id\_ID |
| Italian                 | it     |
| Japanese                | ja\_JP |
| Javanese                | jv\_ID |
| Korean                  | ko\_KR |
| Malay                   | ms\_MY |
| Portuguese (Brazil)     | pt\_BR |
| Portuguese (Portugal)   | pt\_PT |
| Russian                 | ru\_RU |
| Spanish (Latin America) | es\_LA |
| Spanish (Spain)         | es     |
| Thai                    | th\_TH |
| Turkish                 | tr\_TR |
| Vietnamese              | vi\_VN |
| Hebrew                  | he     |

# Changing Default Translations

OwnID allows clients to customize the translations used in their front-end implementations. This can be done by passing a JSON object with specific keywords and their corresponding values for each locale.
This flexibility makes it easier to fine-tune user interfaces according to different language needs.

[Check this guide](/explore/custom-translations) to customize OwnID translations.
