Changeset 36389 in osm


Ignore:
Timestamp:
2025-02-15T12:40:48+01:00 (4 days ago)
Author:
stoecker
Message:

fix #24146 - missing translations in utilsplugin2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/latlon/LatLonDialog.java

    r36362 r36389  
    9494        bgType = new ButtonGroup();
    9595
    96         rbNodes = new JRadioButton("Nodes", true);
     96        rbNodes = new JRadioButton(tr("Nodes"), true);
    9797        rbNodes.setActionCommand("nodes");
    9898        bgType.add(rbNodes);
    9999        pnl.add(rbNodes);
    100100
    101         rbWay = new JRadioButton("Way");
     101        rbWay = new JRadioButton(tr("Way"));
    102102        rbWay.setActionCommand("way");
    103103        bgType.add(rbWay);
    104104        pnl.add(rbWay);
    105105
    106         rbClosedWay = new JRadioButton("Closed Way (Area)");
     106        rbClosedWay = new JRadioButton(tr("Closed Way (Area)"));
    107107        rbClosedWay.setActionCommand("area");
    108108        bgType.add(rbClosedWay);
Note: See TracChangeset for help on using the changeset viewer.