Ignore:
Timestamp:
2011-08-11T00:45:56+02:00 (13 years ago)
Author:
stoecker
Message:

i18n fixes

Location:
applications/editors/josm/plugins/gpxfilter
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/gpxfilter/build.xml

    r26471 r26509  
    100100                <attribute name="Plugin-Class" value="gpxfilter.GpxFilterPlugin"/>
    101101                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    102                 <attribute name="Plugin-Description" value="Allows to filter out unnececary GPS tracks"/>
     102                <attribute name="Plugin-Description" value="Allows to filter out unnecessary GPS tracks"/>
    103103                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/GPXFilter"/>
    104104                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
  • applications/editors/josm/plugins/gpxfilter/src/gpxfilter/EGpxLayer.java

    r26471 r26509  
    12461246        if (bestEN == null)
    12471247            return null;
    1248         WayPoint best = new WayPoint(Main.proj.eastNorth2latlon(bestEN));
     1248        WayPoint best = new WayPoint(Main.getProjection().eastNorth2latlon(bestEN));
    12491249        best.time = bestTime;
    12501250        return best;
Note: See TracChangeset for help on using the changeset viewer.