Changeset 14682 in josm


Ignore:
Timestamp:
2019-01-12T19:30:48+01:00 (6 years ago)
Author:
simon04
Message:

ExportRelationToGpxAction: i18n fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/relation/ExportRelationToGpxAction.java

    r14681 r14682  
    140140
    141141        GpxData gpxData = new GpxData();
    142         String layerName = " (GPX export)";
     142        final String layerName;
    143143        long time = TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis()) - 24*3600;
    144144
     
    186186            if (lprefix == null || relations.size() > 1)
    187187                lprefix = tr("Selected Relations");
    188             layerName = lprefix + layerName;
     188            layerName = tr("{0} (GPX export)", lprefix);
     189        } else {
     190            layerName = "";
    189191        }
    190192
Note: See TracChangeset for help on using the changeset viewer.