这是否可以使用谷歌网站翻译小工具翻译部分网页



我有一个用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..."one_answers"other content..."将不会被翻译,选择框中的"One"one_answers"Two"将被翻译。

结果:

<body>
<span class="notranslate">
content...
</span>

<select>
    <option value="1">یک</option>
    <option value="2">دو</option>
</select>

<span class="notranslate">
other content...
</span>
</body>

相关内容

  • 没有找到相关文章

最新更新