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/swing/LicensePageRenderer.java

    r15210 r17514  
    4242public class LicensePageRenderer
    4343    extends SwingPageRenderer {
    44 
    45     private static final ResourceBundle res = ResourceBundle.getBundle("resources.LanguagePack");
    4644
    4745    private JTextArea licenseTextArea = new JTextArea();
     
    9088        this.add(scrollPane, BorderLayout.CENTER);
    9189
    92         getNextButton().setText( res.getString( "license.next.text" ) );
     90        getNextButton().setText( org.tp23.antinstaller.Installer.langPack.getString( "license.next.text" ) );
    9391        getNextButton().setIcon(getImage("/resources/icons/ok.png"));
    94         getCancelButton().setText( res.getString( "license.cancel.text" ) );
     92        getCancelButton().setText( org.tp23.antinstaller.Installer.langPack.getString( "license.cancel.text" ) );
    9593
    9694    }
Note: See TracChangeset for help on using the changeset viewer.