Changeset 27058 in osm for applications/editors/josm/plugins/smed
- Timestamp:
- 2011-11-14T21:12:48+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/smed/plugs/oseam/src/oseam
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages.properties
r27056 r27058 264 264 DishAerial=Dish Aerial 265 265 RadioMast=Radio Mast 266 WindMotor=Wind Motor -
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages_de.properties
r27056 r27058 264 264 DishAerial=Dish Aerial 265 265 RadioMast=Radio Mast 266 WindMotor=Wind Motor -
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages_en.properties
r27056 r27058 264 264 DishAerial=Dish Aerial 265 265 RadioMast=Radio Mast 266 WindMotor=Wind Motor -
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelLights.java
r27056 r27058 137 137 addLCItem(Messages.getString("RadioMast"), Cat.LMK_RADM); 138 138 addLCItem(Messages.getString("Tower"), Cat.LMK_TOWR); 139 addLCItem(Messages.getString("WindMotor"), Cat.LMK_WNDM); 139 140 addLCItem(Messages.getString("WaterTower"), Cat.LMK_WTRT); 140 141 landCatBox.setVisible(false); -
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/seamarks/SeaMark.java
r27056 r27058 170 170 SIS_DNGR, SIS_OBST, SIS_CABL, SIS_MILY, SIS_DSTR, SIS_WTHR, SIS_STRM, SIS_ICE, SIS_TIME, SIS_TIDE, 171 171 SIS_TSTM, SIS_TGAG, SIS_TSCL, SIS_DIVE, SIS_LGAG, LIT_DIRF, LIT_LEDG, 172 LMK_CHMY, LMK_CARN, LMK_DSHA, LMK_FLGS, LMK_FLRS, LMK_MNMT, LMK_RADM, LMK_TOWR, LMK_W TRT172 LMK_CHMY, LMK_CARN, LMK_DSHA, LMK_FLGS, LMK_FLRS, LMK_MNMT, LMK_RADM, LMK_TOWR, LMK_WNDM, LMK_WTRT 173 173 } 174 174 … … 240 240 CatSTR.put(Cat.LMK_RADM, "radio_mast"); 241 241 CatSTR.put(Cat.LMK_TOWR, "tower"); 242 CatSTR.put(Cat.LMK_WNDM, "wind_motor"); 242 243 CatSTR.put(Cat.LMK_WTRT, "water_tower"); 243 244 } … … 1702 1703 imgStr += "LandTower"; 1703 1704 break; 1705 case LMK_WNDM: 1706 imgStr += "Wind_Motor"; 1707 break; 1704 1708 case LMK_WTRT: 1705 1709 imgStr += "WaterTower";
Note:
See TracChangeset
for help on using the changeset viewer.