Ticket #18455: josm_18455_wording.patch
File josm_18455_wording.patch, 1.1 KB (added by , 5 years ago) |
---|
-
src/org/openstreetmap/josm/data/validation/tests/TagChecker.java
618 618 TaggingPresetType presetType = TaggingPresetType.forPrimitive(p); 619 619 if (!tp.typeMatches(EnumSet.of(presetType))) { 620 620 errors.add(TestError.builder(this, Severity.OTHER, INVALID_PRESETS_TYPE) 621 .message(tr(" Type not in preset"),622 marktr(" {0} is not supported by tagging preset: {1}"), tr(presetType.getName()), tp.getLocaleName())621 .message(tr("Object type not in preset"), 622 marktr("Object type {0} is not supported by tagging preset: {1}"), tr(presetType.getName()), tp.getLocaleName()) 623 623 .primitives(p) 624 624 .build()); 625 625 }