我有一个用asp.net设计的网页。我正在使用谷歌网站翻译小工具将我的整个网页翻译成不同的语言。但我的一些网页只需要网页的一部分要翻译的页面。例如,在我的网页中,我显示了一个列表框控件。现在我只想翻译列表框的内容。
这可以通过 Google网站翻译小工具来实现吗?
请指导我解决这个问题吗?
答案 0 :(得分:0)
是的,请使用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>
在此示例中,&#34; content...
&#34;和&#34; other content...
&#34;不会被翻译和&#34; One
&#34;和&#34; Two
&#34;在选择框中将被翻译。
结果:
<body>
<span class="notranslate">
content...
</span>
<select>
<option value="1">یک</option>
<option value="2">دو</option>
</select>
<span class="notranslate">
other content...
</span>
</body>