Ignore:
Timestamp:
2011-04-15T12:26:55+02:00 (13 years ago)
Author:
stoecker
Message:

improve validator user interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java

    r3707 r4023  
    399399
    400400                if (!ignore) {
    401                     errors.add( new TestError(this, Severity.ERROR, tr("Illegal tag/value combinations"),
    402                             tr("Illegal tag/value combinations"), tr("Illegal tag/value combinations"), 1272, p) );
     401                    errors.add( new TestError(this, Severity.ERROR, tr("Suspicious tag/value combinations"),
     402                            tr("Suspicious tag/value combinations"), tr("Suspicious tag/value combinations"), 1272, p) );
    403403                    withErrors.put(p, "TC");
    404404                }
     
    408408            for (CheckerData d : checkerData) {
    409409                if (d.match(p, keys)) {
    410                     errors.add( new TestError(this, d.getSeverity(), tr("Illegal tag/value combinations"),
     410                    errors.add( new TestError(this, d.getSeverity(), tr("Suspicious tag/value combinations"),
    411411                            d.getDescription(), d.getDescriptionOrig(), d.getCode(), p) );
    412412                    withErrors.put(p, "TC");
Note: See TracChangeset for help on using the changeset viewer.