<svg height="300" width="300">
<text x="40" y="40" class=notranslate>This is svg text</text>
</svg>
It actually inserts <font><font>{translated text}</font></font> inside the svg element, which cannot be rendered in the svg so that nothing is actually displayed.
Has anyone seen this and is there a workaround? It's messing up a little svg chart I have, where there are text labels on the axes, as it makes them disappear :)
<svg height="300" width="300">
<text x="40" y="40" class="notranslate">This is svg text</text>
</svg>
Hopefully its that simple.
Good luck.