- Timestamp:
- 2008-12-12T22:20:36+01:00 (16 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/GeoImageLayer.java
r627 r1116 473 473 JTextField gpsText = new JTextField(dateFormat.format(new Date(exifDate.getTime()+delta))); 474 474 p.add(gpsText, GBC.eol().fill(GBC.HORIZONTAL)); 475 p.add(new JLabel(tr("GPS unit timezo me (difference to photo)")), GBC.eol());475 p.add(new JLabel(tr("GPS unit timezone (difference to photo)")), GBC.eol()); 476 476 String t = Main.pref.get("tagimages.gpstimezone", "0"); 477 477 if (t.charAt(0) != '-') -
trunk/src/org/openstreetmap/josm/plugins/PluginException.java
r627 r1116 16 16 17 17 public PluginException(PluginProxy plugin, String name, Throwable cause) { 18 super(tr("An error occ oured in plugin {0}", name), cause);18 super(tr("An error occured in plugin {0}", name), cause); 19 19 this.plugin = plugin; 20 20 this.name = name;
Note:
See TracChangeset
for help on using the changeset viewer.