GWT,如何为@DefaultStringArrayValue 消息制作 i18n
GWT, how to make i18n for @DefaultStringArrayValue messages
我正在尝试在多个语言环境中制作我的应用程序 运行 我从 here
如何使静态文本在不同的语言环境中工作。但是任何人都知道如何使用 i18n 语言环境来做到这一点 @DefaultStringArrayValue。
即如果我有以下内容:
@DefaultStringArrayValue({"RDY", "Ready", "HLD", "Held", "RUN", "Run", "FIN", "Finished", "MSG", "Message", "END", "End", "ERR", "Error"})
String[] jobStatuses();
如何为此在 属性 文件中创建条目?
谢谢。
Javadoc 没有说明一切吗?
Note that in the corresponding properties/etc file, commas are used to separate elements of the array unless they are preceded with a backslash.
jobStatuses=RDY,Ready,HLD,Held,RUN,Run,FIN,Finished,MSG,Message,END,End,ERR,Error
我正在尝试在多个语言环境中制作我的应用程序 运行 我从 here 如何使静态文本在不同的语言环境中工作。但是任何人都知道如何使用 i18n 语言环境来做到这一点 @DefaultStringArrayValue。 即如果我有以下内容:
@DefaultStringArrayValue({"RDY", "Ready", "HLD", "Held", "RUN", "Run", "FIN", "Finished", "MSG", "Message", "END", "End", "ERR", "Error"})
String[] jobStatuses();
如何为此在 属性 文件中创建条目?
谢谢。
Javadoc 没有说明一切吗?
Note that in the corresponding properties/etc file, commas are used to separate elements of the array unless they are preceded with a backslash.
jobStatuses=RDY,Ready,HLD,Held,RUN,Run,FIN,Finished,MSG,Message,END,End,ERR,Error