Ticket #18455: josm_18455_wording.patch

File josm_18455_wording.patch, 1.1 KB (added by skyper, 5 years ago)

wording patch

  • src/org/openstreetmap/josm/data/validation/tests/TagChecker.java

     
    618618                TaggingPresetType presetType = TaggingPresetType.forPrimitive(p);
    619619                if (!tp.typeMatches(EnumSet.of(presetType))) {
    620620                    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())
    623623                            .primitives(p)
    624624                            .build());
    625625                }