Changeset 14682 in josm
- Timestamp:
- 2019-01-12T19:30:48+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/relation/ExportRelationToGpxAction.java
r14681 r14682 140 140 141 141 GpxData gpxData = new GpxData(); 142 String layerName = " (GPX export)";142 final String layerName; 143 143 long time = TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis()) - 24*3600; 144 144 … … 186 186 if (lprefix == null || relations.size() > 1) 187 187 lprefix = tr("Selected Relations"); 188 layerName = lprefix + layerName; 188 layerName = tr("{0} (GPX export)", lprefix); 189 } else { 190 layerName = ""; 189 191 } 190 192
Note:
See TracChangeset
for help on using the changeset viewer.