Changeset 1032 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2008-10-07T20:31:07+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
r914 r1032 104 104 StringBuilder sb = new StringBuilder(); 105 105 if (revUrl == null) { 106 sb.append( "Development version. Unknown revision.");106 sb.append(tr("Development version. Unknown revision.")); 107 107 File f = new File("org/openstreetmap/josm/Main.class"); 108 108 if (!f.exists()) … … 132 132 public void lostOwnership(Clipboard clipboard, Transferable contents) {} 133 133 }); 134 p.add(new JLabel(tr(" The text has already been copied to your clipboard.")), GBC.eop());134 p.add(new JLabel(tr("(The text has already been copied to your clipboard.)")), GBC.eop()); 135 135 } 136 136 catch (RuntimeException x) {}
Note:
See TracChangeset
for help on using the changeset viewer.