Changeset 6206


Ignore:
Timestamp:
2003-12-10T16:37:39+13:00 (20 years ago)
Author:
jmt12
Message:

Added GPL and Tame recognition to about page

File:
1 edited

Legend:

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

    r5593 r6206  
    7676    JLabel copyright_label = new JLabel();
    7777    Dictionary.setText(copyright_label, "AboutDialog.Copyright");
     78    JLabel gpl_label = new JLabel();
     79    Dictionary.setText(gpl_label, "AboutDialog.Copyright_Two");
    7880
    7981    JTextArea text = new JTextArea();
     
    9193    icon_label.setBorder(BorderFactory.createEmptyBorder(0,0,0,10));
    9294
    93     title_pane.setLayout(new GridLayout(4,1,0,2));
     95    title_pane.setLayout(new GridLayout(5,1,0,2));
    9496    title_pane.add(title_one_label);
    9597    title_pane.add(title_two_label);
    9698    title_pane.add(title_three_label);
    9799    title_pane.add(copyright_label);
     100    title_pane.add(gpl_label);
    98101         
    99102    upper_pane.setBorder(BorderFactory.createEmptyBorder(0,0,5,0));
     
    140143    text.append("\n\n");
    141144    text.append(Dictionary.get("AboutDialog.Item8"));
     145    text.append("\n\n");
     146    text.append(Dictionary.get("AboutDialog.Item9"));
    142147    text.setCaretPosition(0);
    143148
Note: See TracChangeset for help on using the changeset viewer.