Changeset 4646


Ignore:
Timestamp:
2003-06-13T15:07:16+12:00 (21 years ago)
Author:
kjdon
Message:

added a date string for teh about dialog - this is a bit of a hack to try to indicate which version of the Gatherer has been installed. this will only work if this date is updated regularly - we should think of something better before the dictionary files get translated

Location:
trunk/gli
Files:
2 edited

Legend:

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

    r4637 r4646  
    2828#***** AboutDialog *****
    2929AboutDialog.Acknowledgement:Acknowledgements for proprietary programs, packages or classes...
     30AboutDialog.Date:(13 June, 2003)
    3031AboutDialog.Item0:'Xerces Java 1' from The Apache Software Foundation (http://www.apache.org/)
    3132AboutDialog.Item1:'CalPane' HTML renderer by Andrew Moulden (http://www.netcomuk.co.uk/~offshore/index.html)
  • trunk/gli/src/org/greenstone/gatherer/gui/AboutDialog.java

    r4367 r4646  
    6666    JPanel title_pane = new JPanel();
    6767    JLabel title_one_label = new JLabel(get("Title_One"));
    68     JLabel title_two_label = new JLabel(Utility.PROGRAM_NAME + " " + Utility.PROGRAM_VERSION);
     68    JLabel title_two_label = new JLabel(Utility.PROGRAM_NAME + " " + Utility.PROGRAM_VERSION + " " + get("Date"));
    6969    JLabel title_three_label = new JLabel(get("Title_Two"));
    7070    JLabel copyright_label = new JLabel(get("Copyright"));
     
    127127    text.append("\n\n");
    128128    text.append(get("Item7"));
     129   
    129130    text.setCaretPosition(0);
    130131
Note: See TracChangeset for help on using the changeset viewer.