我无法使用 GWT 的常用 i18N 本地化来本地化 TabLayoutPanel 中的选项卡名称(“标题”)。
这有效:
<g:TabLayoutPanel addStyleNames='LocationsModule' barUnit="PX" barHeight="30" >
<g:tab>
<g:header>Locations</g:header>
但我无法让任何其他版本工作:
<g:header text='{messages.layersTabTitle}' />
或者
<g:customHeader>
<g:Label text='{messages.locationsTabTitle}' />
<g:Label>'{messages.locationsTabTitle}'</g:Label>
</g:customHeader>
任何人都能够做到这一点,而不诉诸代码?