GWT有一个很好的文档:https://developers.google.com/web-toolkit/doc/latest/DevGuideI18nLocale
除了html文件外,几乎所有情况都已本地化。 是否可以在GWT的项目中本地化html文件?
例如,如何使用GWT的i18n可能性来本地化简单的html标题容器:
...
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Text that should be localized :)</title>
</head>
...
非常感谢您的反馈!
答案 0 :(得分:1)
如果您只想本地化标题,可以使用GWT方法设置它:
Window.setTitle(strings.title());
如果要在HTML中本地化静态文本,可以将其实现为jsp文件。这是答案Internationalization in a JSP web application?
答案 1 :(得分:1)