Ignore:
Timestamp:
2011-11-14T21:12:48+01:00 (13 years ago)
Author:
malcolmh
Message:

save

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  
    264264DishAerial=Dish Aerial
    265265RadioMast=Radio Mast
     266WindMotor=Wind Motor
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages_de.properties

    r27056 r27058  
    264264DishAerial=Dish Aerial
    265265RadioMast=Radio Mast
     266WindMotor=Wind Motor
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages_en.properties

    r27056 r27058  
    264264DishAerial=Dish Aerial
    265265RadioMast=Radio Mast
     266WindMotor=Wind Motor
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelLights.java

    r27056 r27058  
    137137                addLCItem(Messages.getString("RadioMast"), Cat.LMK_RADM);
    138138                addLCItem(Messages.getString("Tower"), Cat.LMK_TOWR);
     139                addLCItem(Messages.getString("WindMotor"), Cat.LMK_WNDM);
    139140                addLCItem(Messages.getString("WaterTower"), Cat.LMK_WTRT);
    140141                landCatBox.setVisible(false);
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/seamarks/SeaMark.java

    r27056 r27058  
    170170                SIS_DNGR, SIS_OBST, SIS_CABL, SIS_MILY, SIS_DSTR, SIS_WTHR, SIS_STRM, SIS_ICE, SIS_TIME, SIS_TIDE,
    171171                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_WTRT
     172                LMK_CHMY, LMK_CARN, LMK_DSHA, LMK_FLGS, LMK_FLRS, LMK_MNMT, LMK_RADM, LMK_TOWR, LMK_WNDM, LMK_WTRT
    173173        }
    174174
     
    240240                CatSTR.put(Cat.LMK_RADM, "radio_mast");
    241241                CatSTR.put(Cat.LMK_TOWR, "tower");
     242                CatSTR.put(Cat.LMK_WNDM, "wind_motor");
    242243                CatSTR.put(Cat.LMK_WTRT, "water_tower");
    243244        }
     
    17021703                                        imgStr += "LandTower";
    17031704                                        break;
     1705                                case LMK_WNDM:
     1706                                        imgStr += "Wind_Motor";
     1707                                        break;
    17041708                                case LMK_WTRT:
    17051709                                        imgStr += "WaterTower";
Note: See TracChangeset for help on using the changeset viewer.