Changeset 1116 in josm for trunk/src/org


Ignore:
Timestamp:
2008-12-12T22:20:36+01:00 (15 years ago)
Author:
stoecker
Message:

fixed 2 typos. closes #1821

Location:
trunk/src/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/GeoImageLayer.java

    r627 r1116  
    473473                JTextField gpsText = new JTextField(dateFormat.format(new Date(exifDate.getTime()+delta)));
    474474                p.add(gpsText, GBC.eol().fill(GBC.HORIZONTAL));
    475                 p.add(new JLabel(tr("GPS unit timezome (difference to photo)")), GBC.eol());
     475                p.add(new JLabel(tr("GPS unit timezone (difference to photo)")), GBC.eol());
    476476                String t = Main.pref.get("tagimages.gpstimezone", "0");
    477477                if (t.charAt(0) != '-')
  • trunk/src/org/openstreetmap/josm/plugins/PluginException.java

    r627 r1116  
    1616
    1717        public PluginException(PluginProxy plugin, String name, Throwable cause) {
    18             super(tr("An error occoured in plugin {0}", name), cause);
     18            super(tr("An error occured in plugin {0}", name), cause);
    1919                this.plugin = plugin;
    2020                this.name = name;
Note: See TracChangeset for help on using the changeset viewer.