Ignore:
Timestamp:
2008-12-31T00:36:58+01:00 (15 years ago)
Author:
stoecker
Message:

fixed relation handling, applied language patches

File:
1 edited

Legend:

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

    r1188 r1195  
    479479            final Bounds b = BoundingBoxSelection.osmurl2bounds(s);
    480480            if (b == null)
    481                 JOptionPane.showMessageDialog(Main.parent, tr("Ignoring malformed url: \"{0}\"", s));
     481                JOptionPane.showMessageDialog(Main.parent, tr("Ignoring malformed URL: \"{0}\"", s));
    482482            else {
    483483                //DownloadTask osmTask = main.menu.download.downloadTasks.get(0);
     
    492492                main.menu.openFile.openFile(new File(new URI(s)));
    493493            } catch (URISyntaxException e) {
    494                 JOptionPane.showMessageDialog(Main.parent, tr("Ignoring malformed file url: \"{0}\"", s));
     494                JOptionPane.showMessageDialog(Main.parent, tr("Ignoring malformed file URL: \"{0}\"", s));
    495495            }
    496496            return;
Note: See TracChangeset for help on using the changeset viewer.