88 |
89 | {{ $t('home.test' /* this is not a test!!! */) }}
90 |
91 | ...
92 |
93 |
94 | ```
95 |
96 | and run `npm run extract-i18n-messages` again.
97 |
98 | You will have a new value in `./i18n/en.json`:
99 |
100 | ```json
101 | {
102 | ...
103 | "home.test": "this is not a test!!!"
104 | }
105 | ```
106 |
107 | but the value in `./i18n/de.json` will stay the same:
108 |
109 | ```json
110 | {
111 | ...
112 | "home.test": "das ist ein Test!!!"
113 | }
114 | ```
115 |
116 | ## Known limitations
117 |
118 | If you want to add HTML to your default messages inside a template, you have to use `[]` instead of `<>` e.g.:
119 |
120 | ```html
121 |