Ignore:
Timestamp:
2008-10-10T09:05:07+13:00 (16 years ago)
Author:
oranfry
Message:

changes to the way ant-installer loads and reloads the language packs, and a new attribute to the select input which triggers it to change the language to the input value

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/ant-installer/src/org/tp23/antinstaller/renderer/text/TextPageRenderer.java

    r15353 r17514  
    3030    extends AbstractTextPageRenderer {
    3131
    32     private static final ResourceBundle res = ResourceBundle.getBundle("resources.LanguagePack");
    33     private static final String nextChar = res.getString("nextChar");
     32    private static final String nextChar = org.tp23.antinstaller.Installer.langPack.getString("nextChar");
    3433
    3534    public TextPageRenderer() {
     
    8584           
    8685            out.println();
    87             out.println(res.getString("clickViewText"));
     86            out.println(org.tp23.antinstaller.Installer.langPack.getString("clickViewText"));
    8887            commandReader.readLine();
    8988           
     
    9695
    9796    private String getNextInstructions() {
    98         return res.getString("license_next");
     97        return org.tp23.antinstaller.Installer.langPack.getString("license_next");
    9998    }
    10099}
Note: See TracChangeset for help on using the changeset viewer.