是否可以使用Google Website Translator小工具翻译部分网页?

时间:2013-07-03 12:01:58

标签: asp.net-mvc translation google-translate google-translator-toolkit

我有一个用asp.net设计的网页。我正在使用谷歌网站翻译小工具将我的整个网页翻译成不同的语言。但我的一些网页只需要网页的一部分要翻译的页面。例如,在我的网页中,我显示了一个列表框控件。现在我只想翻译列表框的内容。

这可以通过 Google网站翻译小工具来实现吗?

请指导我解决这个问题吗?

1 个答案:

答案 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>