Ignore:
Timestamp:
2009-08-10T12:46:51+02:00 (15 years ago)
Author:
stoecker
Message:

close #3226 - patch by Daeron - improve align in circle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/GpxWriter.java

    r1724 r1947  
    11// License: GPL. Copyright 2007 by Immanuel Scholz and others
    22package org.openstreetmap.josm.io;
     3
     4import static org.openstreetmap.josm.tools.I18n.tr;
    35
    46import java.io.BufferedWriter;
     
    235237            break;
    236238        default:
    237             throw new RuntimeException("Bug detected. Please report this!");
     239            throw new RuntimeException(tr("Unknown mode {0}.", mode));
    238240        }
    239241        if (pnt != null) {
    240             LatLon c =pnt.getCoor();
     242            LatLon c = pnt.getCoor();
    241243            openAtt(type, "lat=\"" + c.lat() + "\" lon=\"" + c.lon() + "\"");
    242244            writeAttr(pnt.attr);
Note: See TracChangeset for help on using the changeset viewer.