# Translations

All translations are in `translations` directory.

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

### Example

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

```javascript
export default {
    first_name: 'Prénom',
}
```

{% endcode %}

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

[Read more on Expo.](https://docs.expo.io/versions/latest/sdk/localization/)
