---
title: "Non-English Locales"
description: "How to use the Nuxt OG Image module with non-english locales."
canonical_url: "https://nuxtseo.com/docs/og-image/v5/guides/non-english-locales"
last_updated: "2026-05-06T18:50:21.362Z"
---

To render Satori images correctly, the module provides the [default font Inter](/docs/og-image/guides/custom-fonts).

Inter does not support non-english character, so you will need to switch the font when rendering
in different languages.

The [Noto Typeface](https://fonts.google.com/noto) from Google Fonts is a good option for this as they support a wide range of languages.

### Example: Chinese

```ts
export default defineNuxtConfig({
  ogImage: {
    fonts: [
      'Noto+Sans+SC:400'
    ]
  }
})
```

```vue
<script lang="ts" setup>
defineOgImageComponent('NuxtSeo', {
  title: '中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試',
})
</script>
```
