Changeset 13076 for trunk/gli


Ignore:
Timestamp:
2006-10-11T10:24:02+13:00 (18 years ago)
Author:
mdewsnip
Message:

A few changes to make the "name" field more obvious (hopefully).

Location:
trunk/gli
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/classes/dictionary.properties

    r13048 r13076  
    464464#
    465465#****** ExportAsPrompt *******
    466 ExportAsPrompt.Export_Name:Directory name
     466ExportAsPrompt.Export_Name:Folder name
     467ExportAsPrompt.Export_Name_Tooltip:The name of the folder in the Greenstone tmp directory where the exported collections will be saved.
    467468ExportAsPrompt.Export:Export collection(s)
    468469ExportAsPrompt.Export_Tooltip:Export the selected collections in the chosen file format into the designated directory
  • trunk/gli/src/org/greenstone/gatherer/gui/ExportAsPrompt.java

    r13066 r13076  
    235235   
    236236    title_field = new JTextField();
    237     // Dictionary.setTooltip(title_field, "ExportAsPrompt.Export_Name_Tooltip");
     237    title_field.setToolTipText(Dictionary.get("ExportAsPrompt.Export_Name_Tooltip"));
    238238    title_label = new JLabel(Dictionary.get("ExportAsPrompt.Export_Name"));
    239239   
     
    300300    title_pane.add(title_label, BorderLayout.WEST);
    301301    title_pane.add(title_field, BorderLayout.CENTER);
    302    
    303302        //apply xsl pane
    304303         
     
    431430    }
    432431    else {
    433         export_dir += "exported_" + cd_title.replaceAll("\\s", "");
     432        export_dir += cd_title.replaceAll("\\s", "");
    434433    }
    435434    command_parts_list.add(export_dir);
Note: See TracChangeset for help on using the changeset viewer.