Ignore:
Timestamp:
2009-06-07T10:10:06+02:00 (15 years ago)
Author:
stoecker
Message:

prevent overwriting of GPX files

File:
1 edited

Legend:

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

    r1415 r1648  
    7070    private void configureSites() {
    7171        JPanel p = new JPanel(new GridBagLayout());
    72         p.add(new JLabel(tr("Add either site-josm.xml or Wiki Pages.")), GBC.eol());
     72        p.add(new JLabel(tr("Add JOSM Plugin description URL.")), GBC.eol());
    7373        final DefaultListModel model = new DefaultListModel();
    7474        for (String s : PluginDownloader.getSites())
     
    7979        buttons.add(new JButton(new AbstractAction(tr("Add")){
    8080            public void actionPerformed(ActionEvent e) {
    81                 String s = JOptionPane.showInputDialog(gui, tr("Add either site-josm.xml or Wiki Pages."));
     81                String s = JOptionPane.showInputDialog(gui, tr("Add JOSM Plugin description URL."));
    8282                if (s != null)
    8383                    model.addElement(s);
     
    9090                    return;
    9191                }
    92                 String s = JOptionPane.showInputDialog(gui, tr("Add either site-josm.xml or Wiki Pages."), list.getSelectedValue());
     92                String s = JOptionPane.showInputDialog(gui, tr("Edit JOSM Plugin description URL."), list.getSelectedValue());
    9393                model.setElementAt(s, list.getSelectedIndex());
    9494            }
Note: See TracChangeset for help on using the changeset viewer.