> For the complete documentation index, see [llms.txt](https://codedthemes.gitbook.io/mantis-vuetify/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://codedthemes.gitbook.io/mantis-vuetify/internationalization.md).

# Internationalization

Localization Support for Edge, Chrome, Firefox, and Safari

Mantis supports four types of international languages ('**en**' - English, '**fr**' - French, '**ro**' - Romanian, '**zh**' - Chinese). You can switch language from the header bar. We internationalize the main menu for all four languages. When you change it from the header, you will see the effect there. If you want to configure one more language or set a default language, then continue reading below\...

### How does it work?

Data for locale files exists at **`src\utils\locales`**

{% tabs %}
{% tab title=".json file" %}
{

\
"account-profile": "Account Profile",\
"add-new-product": "Add New Product",\
...\
...\
}
{% endtab %}
{% endtabs %}

To change the Locale, open the file **`src\plugins\vuetify.ts`** file and set language

```typescript
export const i18n = createI18n({
  legacy: false,
  locale: 'en', // 'en' - English, 'fr' - French, 'ro' - Romanian, 'zh' - Chinese
  fallbackLocale: 'en',
  messages
});
```

\
Open file **`App.vue`** and apply **IntlProvider**

```vue
<template>
  <v-locale-provider>
    ......
  </v-locale-provider>
</template>
```
