Changeset 13468


Ignore:
Timestamp:
2006-12-08T16:11:59+13:00 (17 years ago)
Author:
mdewsnip
Message:

A couple of minor changes to use dictionary strings.

Location:
trunk/gli/src/org/greenstone/gatherer/cdm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/IndexManager.java

    r13195 r13468  
    774774            // Note the order of these must be the same as the
    775775            // level order in Index
    776             level_combobox.addItem(StaticStrings.DOCUMENT_STR);//Dictionary.get("CDM.IndexManager.Document"));
    777             level_combobox.addItem(StaticStrings.SECTION_STR);//Dictionary.get("CDM.IndexManager.Section"));
    778             level_combobox.addItem(StaticStrings.PARAGRAPH_STR);//Dictionary.get("CDM.IndexManager.Paragraph"));
     776            level_combobox.addItem(StaticStrings.DOCUMENT_STR);//Dictionary.get("CDM.LevelManager.Document"));
     777            level_combobox.addItem(StaticStrings.SECTION_STR);//Dictionary.get("CDM.LevelManager.Section"));
     778            level_combobox.addItem(StaticStrings.PARAGRAPH_STR);//Dictionary.get("CDM.LevelManager.Paragraph"));
    779779            level_combobox.setEditable(false);
    780780            level_combobox.setToolTipText(Dictionary.get("CDM.IndexManager.Level_Tooltip"));
  • trunk/gli/src/org/greenstone/gatherer/cdm/IndexOptionManager.java

    r13074 r13468  
    370370        JLabel checkbox_label = new JLabel(Dictionary.get("CDM.LevelManager.Level_Title"));
    371371        checkbox_panel.setLayout(new GridLayout(3,1));
    372        
     372        checkbox_panel.setToolTipText(Dictionary.get("CDM.IndexManager.Level_Tooltip"));
    373373        checkbox_panel.add(checkbox_label);
    374374        checkbox_panel.add(document_checkbox);
     
    377377        JLabel default_label = new JLabel(Dictionary.get("CDM.LevelManager.Default"));
    378378        default_panel.setLayout(new GridLayout(3,1));
     379        default_panel.setToolTipText(Dictionary.get("CDM.LevelManager.Default_Tooltip"));
    379380        default_panel.add(default_label);
    380381        default_panel.add(document_default_radio);
Note: See TracChangeset for help on using the changeset viewer.