Ignore:
Timestamp:
2006-07-10T14:57:04+12:00 (18 years ago)
Author:
kjdon
Message:

Changed text handling to use Dictionary.get rather than Dictionary.setText or Dictionary.registerBoth etc. also removed mnemonics cos they suck for other languages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/SimpleResultDialog.java

    r9150 r12119  
    6868   
    6969    JPanel output_pane = new JPanel();
    70     JLabel output_label = new JLabel();
    71     Dictionary.registerText(output_label, "General.Review_Output");
    72    
     70    JLabel output_label = new JLabel(Dictionary.get("General.Review_Output"));
     71       
    7372    JTextArea output_textarea = new JTextArea(results);
    7473    output_textarea.setCaretPosition(0);
Note: See TracChangeset for help on using the changeset viewer.