我有一个用 asp.net 设计的网页。我正在使用谷歌网站翻译小工具将我的整个网页翻译成不同的语言。但是我的一些页面只需要要翻译的网页的一部分。例如,在我的网页我显示了一个列表框控件。现在我只想翻译列表框的内容。
谷歌网站翻译小工具可以做到这一点吗?
请指导我摆脱这个问题的方法?
我有一个用 asp.net 设计的网页。我正在使用谷歌网站翻译小工具将我的整个网页翻译成不同的语言。但是我的一些页面只需要要翻译的网页的一部分。例如,在我的网页我显示了一个列表框控件。现在我只想翻译列表框的内容。
谷歌网站翻译小工具可以做到这一点吗?
请指导我摆脱这个问题的方法?
是的,使用class="notranslate"
.
这个对我有用:
<body>
<span class="notranslate">
content...
</span>
<select>
<option value="1">One</option>
<option value="2">Two</option>
</select>
<span class="notranslate">
other content...
</span>
</body>
在本例中,“ content...
”和“ other content...
”不会被翻译,选择框中的“ ”和“ ”将被翻译One
。Two
结果:
<body>
<span class="notranslate">
content...
</span>
<select>
<option value="1">یک</option>
<option value="2">دو</option>
</select>
<span class="notranslate">
other content...
</span>
</body>