Changeset 474 in josm for trunk/src


Ignore:
Timestamp:
2007-11-28T10:43:40+01:00 (16 years ago)
Author:
(none)
Message:

fix bug #480: change the button texts of the plugin preferences

File:
1 edited

Legend:

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

    r383 r474  
    8080                plugin.add(pluginPane, GBC.eol().fill(GBC.BOTH));
    8181                plugin.add(GBC.glue(0,10), GBC.eol());
    82                 JButton morePlugins = new JButton(tr("Check for plugins"));
     82                JButton morePlugins = new JButton(tr("Download List"));
    8383                morePlugins.addActionListener(new ActionListener(){
    8484                        public void actionPerformed(ActionEvent e) {
     
    9595                plugin.add(morePlugins, GBC.std().insets(0,0,10,0));
    9696
    97                 JButton update = new JButton(tr("Update current"));
     97                JButton update = new JButton(tr("Update"));
    9898                update.addActionListener(new ActionListener(){
    9999                        public void actionPerformed(ActionEvent e) {
     
    104104                plugin.add(update, GBC.std().insets(0,0,10,0));
    105105
    106                 JButton configureSites = new JButton(tr("Configure Plugin Sites"));
     106                JButton configureSites = new JButton(tr("Configure Sites ..."));
    107107                configureSites.addActionListener(new ActionListener(){
    108108                        public void actionPerformed(ActionEvent e) {
Note: See TracChangeset for help on using the changeset viewer.