Changeset 12707 in osm for applications/editors/josm/plugins/pluginmanager
- Timestamp:
- 2008-12-31T00:38:51+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pluginmanager/src/at/dallermassl/josm/plugin/pluginmanager/PluginManagerPreference.java
r12588 r12707 90 90 addSite.addActionListener(new ActionListener(){ 91 91 public void actionPerformed(ActionEvent e) { 92 String siteUrl = JOptionPane.showInputDialog(Main.parent, tr("Update Site U rl"));92 String siteUrl = JOptionPane.showInputDialog(Main.parent, tr("Update Site URL")); 93 93 if (siteUrl == null) 94 94 return; … … 101 101 siteListModel.addElement(site); 102 102 } catch(MalformedURLException mue) { 103 JOptionPane.showMessageDialog(Main.parent, tr("Invalid U rl"), tr("Error"), JOptionPane.ERROR_MESSAGE);103 JOptionPane.showMessageDialog(Main.parent, tr("Invalid URL"), tr("Error"), JOptionPane.ERROR_MESSAGE); 104 104 return; 105 105 }
Note:
See TracChangeset
for help on using the changeset viewer.