Ignore:
Timestamp:
2008-12-25T12:25:20+01:00 (15 years ago)
Author:
stoecker
Message:

unified texts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/AboutAction.java

    r1169 r1179  
    119119
    120120        JPanel info = new JPanel(new GridBagLayout());
    121         info.add(new JLabel(tr("Java OpenStreetMap Editor Version {0}",version)), GBC.eol().fill(GBC.HORIZONTAL));
    122         info.add(new JLabel(tr("last change at {0}",time)), GBC.eol().fill(GBC.HORIZONTAL));
    123         info.add(new JLabel(tr("Java Version {0}",System.getProperty("java.version"))), GBC.eol().fill(GBC.HORIZONTAL));
     121        JLabel caption = new JLabel("JOSM - " + tr("Java OpenStreetMap Editor"));
     122        caption.setFont(new Font("Helvetica", Font.BOLD, 20));
     123        info.add(caption, GBC.eol().fill(GBC.HORIZONTAL).insets(10,0,0,0));
    124124        info.add(GBC.glue(0,10), GBC.eol());
    125         info.add(new JLabel(tr("Homepage")), GBC.std().insets(0,0,10,0));
     125        info.add(new JLabel(tr("Version {0}",version)), GBC.eol().fill(GBC.HORIZONTAL).insets(10,0,0,0));
     126        info.add(GBC.glue(0,5), GBC.eol());
     127        info.add(new JLabel(tr("Last change at {0}",time)), GBC.eol().fill(GBC.HORIZONTAL).insets(10,0,0,0));
     128        info.add(GBC.glue(0,5), GBC.eol());
     129        info.add(new JLabel(tr("Java Version {0}",System.getProperty("java.version"))), GBC.eol().fill(GBC.HORIZONTAL).insets(10,0,0,0));
     130        info.add(GBC.glue(0,10), GBC.eol());
     131        info.add(new JLabel(tr("Homepage")), GBC.std().insets(10,0,10,0));
    126132        info.add(new UrlLabel("http://josm.openstreetmap.de"), GBC.eol().fill(GBC.HORIZONTAL));
    127         info.add(new JLabel(tr("Bug Reports")), GBC.std().insets(0,0,10,0));
     133        info.add(new JLabel(tr("Bug Reports")), GBC.std().insets(10,0,10,0));
    128134        info.add(new UrlLabel("http://josm.openstreetmap.de/newticket"), GBC.eol().fill(GBC.HORIZONTAL));
    129         info.add(new JLabel(tr("News about JOSM")), GBC.std().insets(0,0,10,0));
     135        info.add(new JLabel(tr("News about JOSM")), GBC.std().insets(10,0,10,0));
    130136        info.add(new UrlLabel("http://www.opengeodata.org/?cat=17"), GBC.eol().fill(GBC.HORIZONTAL));
    131137
Note: See TracChangeset for help on using the changeset viewer.