Ignore:
Timestamp:
2003-08-29T11:38:22+12:00 (21 years ago)
Author:
mdewsnip
Message:

Changed dictionary get()s to have the whole key.

File:
1 edited

Legend:

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

    r5164 r5350  
    179179        log_list.addListSelectionListener(new LogListListener());
    180180
    181         JLabel log_history_label = new JLabel(get("LogHistory"));
     181        JLabel log_history_label = new JLabel(get("OptionsPane.LogHistory"));
    182182        JPanel log_history_pane = new JPanel();
    183183        log_history_pane.setPreferredSize(new Dimension(600, 100));
     
    562562        switch (success) {
    563563        case SUCCESSFUL:
    564             d.append(get("Successful"));
     564            d.append(get("OptionsPane.Successful"));
    565565            break;
    566566        case UNSUCCESSFUL:
    567             d.append(get("Unsuccessful"));
     567            d.append(get("OptionsPane.Unsuccessful"));
    568568            break;
    569569        case CANCELLED:
    570             d.append(get("Cancelled"));
     570            d.append(get("OptionsPane.Cancelled"));
    571571            break;
    572572        default:
    573             d.append(get("Unknown"));
     573            d.append(get("OptionsPane.Unknown"));
    574574        }
    575575        display = d.toString();
Note: See TracChangeset for help on using the changeset viewer.