# Adding a new language | Remix Supabase SaaS Kit

> How to add a new language to your Remix Supabase application.

*Canonical: https://makerkit.dev/docs/remix-supabase/how-to/translations/adding-locales*

---

To add a new locale to your application, you need to create a new file in the `public/locales` directory.

For example, to add a new language called `fr` (French), you would create a new file called `fr.json` in the `public/locales` directory.

```json
{
  "hello": "Bonjour"
}
```

That's it! Now you can use the `hello` key in your application and it will be translated to `Bonjour` when the locale is set to `fr`.
