Changeset 17674 in josm for trunk


Ignore:
Timestamp:
2021-03-26T22:41:31+01:00 (3 years ago)
Author:
simon04
Message:

see #20673 - DefaultNameFormatter: add comment pointing to i18n/specialmessages.java

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/DefaultNameFormatter.java

    r17673 r17674  
    406406
    407407    private static String getRelationTypeName(IRelation<?> relation) {
     408        // see https://josm.openstreetmap.de/browser/osm/applications/editors/josm/i18n/specialmessages.java
    408409        String name = trc("Relation type", relation.get("type"));
    409410        if (name == null) {
     
    419420        }
    420421        if (name == null) {
     422            // see https://josm.openstreetmap.de/browser/osm/applications/editors/josm/i18n/specialmessages.java
    421423            name = trc("Place type", relation.get("place"));
    422424        }
Note: See TracChangeset for help on using the changeset viewer.