Changeset 34208 in osm for applications
- Timestamp:
- 2018-05-20T21:21:27+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java
r33733 r34208 504 504 synchronized (debugstr) { 505 505 Logging.error( 506 tr("Error executing the script: ")+507 debugstr.toString() + e.getMessage() + "\n"+ Arrays.toString(e.getStackTrace()));506 tr("Error executing the script:") + ' ' + 507 debugstr.toString() + e.getMessage() + '\n' + Arrays.toString(e.getStackTrace())); 508 508 } 509 509 return; -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/preferences/CadastrePreferenceSetting.java
r33640 r34208 52 52 private JCheckBox transparency = new JCheckBox(tr("Set background transparent.")); 53 53 54 private JCheckBox drawBoundaries = new JCheckBox(tr("Draw boundaries of downloaded data ."));54 private JCheckBox drawBoundaries = new JCheckBox(tr("Draw boundaries of downloaded data")); 55 55 56 56 private JComboBox<String> imageInterpolationMethod = new JComboBox<>(); -
applications/editors/josm/plugins/pdfimport/src/pdfimport/OsmBuilder.java
r32542 r34208 53 53 } 54 54 55 monitor.beginTask(tr("Building JOSM layer ."), this.monitorTotal);55 monitor.beginTask(tr("Building JOSM layer"), this.monitorTotal); 56 56 57 57 -
applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmServerChangesetReader.java
r32905 r34208 147 147 if (in == null) 148 148 return null; 149 monitor.indeterminateSubTask(tr("({0}/{1}) Downloading changeset {2} 149 monitor.indeterminateSubTask(tr("({0}/{1}) Downloading changeset {2}...", i, ids.size(), id)); 150 150 List<Changeset> changesets = OsmChangesetParser.parse(in, monitor.createSubTaskMonitor(1, true)); 151 151 if (changesets == null || changesets.isEmpty()) {
Note:
See TracChangeset
for help on using the changeset viewer.