0

GWT 有一个很好的文档:https ://developers.google.com/web-toolkit/doc/latest/DevGuideI18nLocale

我已经本地化了几乎所有的案例,除了 html 文件。是否可以在 GWT 的项目中本地化 html 文件?

例如,如何本地化简单的 html 标题容器,使用 GWT 的 i18n 可能性:

...
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <title>Text that should be localized :)</title>
  </head>
...

非常感谢您的反馈!

4

2 回答 2

1

If you want to localize only titles you can set it with GWT with method:

Window.setTitle(strings.title());

If you want to localize static text in your HTML you can implement it as jsp files. Here is the answer Internationalization in a JSP web application?

于 2012-04-18T12:52:41.223 回答
1

如果您想在主机页面内更改 GWT 应用程序之外的元素/文本,则 DOM 操作可能是一种方法:

http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/DOM.html
https://developers.google.com/web-toolkit/doc/latest /DevGuideUiDom

于 2012-04-18T14:22:03.797 回答