Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/guides/nested.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ Here is an example of how this looks in your translation files
```

```typescript
i18n.t('test.PAGE_HOME.TITLE', {args: {} })
// => Home to this World

i18n.t('test.PAGE_HOME.SUBTITLE', {args: { username: 'Toon' } })
// => Hello Toon, this is the home page
```

:::tip
The [`formatter`](guides/formatting.md) is applied before doing nested translations. This way you can pass on arguments to your nested translations! 🎉
:::
:::