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/runtime/exe/ExecuteRunnerFilter.java

    r17314 r17514  
    1919import org.tp23.antinstaller.InstallException;
    2020import org.tp23.antinstaller.InstallerContext;
    21 
     21import org.tp23.antinstaller.Installer;
    2222
    2323/**
     
    2727 */
    2828public class ExecuteRunnerFilter implements ExecuteFilter {
    29 
    30     private static final ResourceBundle res = ResourceBundle.getBundle("resources.LanguagePack");
    3129
    3230    /**
     
    3937        boolean ok = ctx.getRunner().runInstaller();
    4038        if(!ok){
    41             throw new AbortException(res.getString("install-cancelled"));
     39            throw new AbortException(Installer.langPack.getString("install-cancelled"));
    4240        }
    4341        ctx.log("Install screens rendered");
Note: See TracChangeset for help on using the changeset viewer.