我有一个关于 Izpack 国际化的问题。
我使用的默认语言是英语。但是如果用户选择罗马尼亚语,我想为安装程序中的每个自定义元素添加国际化。
例如:
<panel order="0" id="xx"> <field type="radio" variable="packageType"> <description align="left" txt="Choose your module type:" id="module.description" /> <spec> <choice txt="Choice 1" value="English Text 1" /> <choice txt="Choice 2" value="English Text 2" /> </spec> </field> </panel>``
** 我想将英文文本的值更改为罗马尼亚文。
研究 IzPack,我尝试添加一个 CustomLangPack.xml_rom
<langpack>
<str id="module.description" txt="Alege tipul tau de afacere:"/>
</langpack>
- 但是,这不起作用。
我怎么能做到这一点,而不使用静态变量?