Ignore:
Timestamp:
2007-08-08T17:09:56+02:00 (19 years ago)
Author:
imi
Message:
  • added better plugin information in about dialog
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/gui/preferences/PluginPreference.java

    r300 r302  
    7979                plugin.add(pluginPane, GBC.eol().fill(GBC.BOTH));
    8080                plugin.add(GBC.glue(0,10), GBC.eol());
    81                 JButton morePlugins = new JButton(tr("Get more plugins"));
     81                JButton morePlugins = new JButton(tr("Check for plugins"));
    8282                morePlugins.addActionListener(new ActionListener(){
    8383                        public void actionPerformed(ActionEvent e) {
     
    201201
    202202                        pluginCheck.setToolTipText(plugin.resource != null ? plugin.resource : tr("Plugin bundled with JOSM"));
    203                         JLabel label = new JLabel("<html><i>"+(plugin.description==null?"no description available":plugin.description)+"</i></html>");
     203                        JLabel label = new JLabel("<html><i>"+(plugin.description==null?tr("no description available"):plugin.description)+"</i></html>");
    204204                        label.setBorder(BorderFactory.createEmptyBorder(0,20,0,0));
    205205                        label.setMaximumSize(new Dimension(450,1000));
Note: See TracChangeset for help on using the changeset viewer.