i18n-element
Version:
I18N Base Element for lit-html and Polymer
21 lines • 723 B
HTML
<!-- temporary HTML --><html><head><link rel="import" href="../../../i18n-element.html"></head><body><dom-module id="get-message"><template localizable-text="embedded"><div>{{text.div}}</div><div>{{parts.0}}</div><div>{{parts.1}}</div><template id="localizable-text">
<json-data>
{
"meta": {},
"model": {},
"div": "message"
}
</json-data>
</template>
</template></dom-module><!-- end of dom-module id="get-message" -->
<dom-module id="get-message2"><template localizable-text="embedded"><div>{{text.div}}</div><template id="localizable-text">
<json-data>
{
"meta": {},
"model": {},
"div": "message 2"
}
</json-data>
</template>
</template></dom-module><!-- end of dom-module id="get-message2" -->
</body></html>