Changeset 7245 in josm


Ignore:
Timestamp:
2014-06-13T01:08:43+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #10143 - Untranslatable "Crossing buildings" string in validator

File:
1 edited

Legend:

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

    r7083 r7245  
    9696        String createMessage(Way w1, Way w2) {
    9797            if (isBuilding(w1)) {
    98                 return ("Crossing buildings");
     98                return tr("Crossing buildings");
    9999            } else if (w1.hasKey(WATERWAY) && w2.hasKey(WATERWAY)) {
    100100                return tr("Crossing waterways");
     
    106106            }
    107107        }
    108 
    109108    }
    110109
Note: See TracChangeset for help on using the changeset viewer.