我想用L20N本地化placeholder
属性。我在他们的文档中找不到任何内容,这样做(不出所料)不起作用。
<input type="text" data-l10n-id="email" />
答案 0 :(得分:12)
正常翻译(意思是你想要替换内容)写成如下:
<test "this is a translated text">
然后您可以翻译这样的属性:
<test "this is a translated text" title:"this is the title">
在您的情况下,您只需要该属性,因此这将起作用:
<test placeholder:"this is a translated text">
HTML应为
<input type="text" data-l10n-id="test" placeholder="" />