Ignore:
Timestamp:
2010-01-13T19:55:07+01:00 (15 years ago)
Author:
mjulius
Message:

fix messages for data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/coor/LatLon.java

    r2711 r2845  
    99import static java.lang.Math.toRadians;
    1010import static org.openstreetmap.josm.tools.I18n.tr;
     11import static org.openstreetmap.josm.tools.I18n.trc;
    1112
    1213import java.text.DecimalFormat;
     
    8384        case DECIMAL_DEGREES: return cDdFormatter.format(y);
    8485        case DEGREES_MINUTES_SECONDS: return dms(y) + ((y < 0) ?
    85                 /* short symbol for South */ tr("S") :
    86                     /* short symbol for North */ tr("N"));
     86                /* short symbol for South */ trc("compass", "S") :
     87                    /* short symbol for North */ trc("compass", "N"));
    8788        default: return "ERR";
    8889        }
     
    9798        case DECIMAL_DEGREES: return cDdFormatter.format(x);
    9899        case DEGREES_MINUTES_SECONDS: return dms(x) + ((x < 0) ?
    99                 /* short symbol for West */ tr("W") :
    100                     /* short symbol for East */ tr("E"));
     100                /* short symbol for West */ trc("compass", "W") :
     101                    /* short symbol for East */ trc("compass", "E"));
    101102        default: return "ERR";
    102103        }
Note: See TracChangeset for help on using the changeset viewer.