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

# Localization

All translations are in `messenger-apps/packages/@shared/translations` directory.

To add a new language, create a file in `translations`directory with the name in the format ISO 639-1&#x20;

{% code title="translations/fr.js" %}

```typescript
export default {
    firstName: 'Prénom'
}
```

{% endcode %}

Translate all keys, then import the file into `translations/index.js` and add to the export object.
