On Vue JS `<i18n>` text content is no to be translated, but part of component interpolation. https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage ```vue <i18n tag="p" path="Keep in touch by watching at {foo} on twitter."> <template v-slot:foo> <a href="foo">foo</a> </template> </i18n> ``` Unfortunately easygettext embed the content: ```po msgid "" "<template v-slot:foo=\"\">\n" " <a href=\"foo\">foo</a>\n" " </template>" msgstr "" ```
On Vue JS
<i18n>text content is no to be translated, but part of component interpolation.https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage
Unfortunately easygettext embed the content: