We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ba5405 + e2fef91 commit df4f637Copy full SHA for df4f637
docs/guides/nested.md
@@ -28,10 +28,13 @@ Here is an example of how this looks in your translation files
28
```
29
30
```typescript
31
+i18n.t('test.PAGE_HOME.TITLE', {args: {} })
32
+// => Home to this World
33
+
34
i18n.t('test.PAGE_HOME.SUBTITLE', {args: { username: 'Toon' } })
35
// => Hello Toon, this is the home page
36
37
38
:::tip
39
The [`formatter`](guides/formatting.md) is applied before doing nested translations. This way you can pass on arguments to your nested translations! 🎉
-:::
40
+:::
0 commit comments