Ignore:
Timestamp:
2011-11-22T20:52:14+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

    r27112 r27131  
    267267RadioMast=Radio Mast
    268268WindMotor=Wind Motor
     269Mast=Mast
     270WindSock=Wind sock
     271Column=Column
     272Obelisk=Obelisk
     273Statue=Statue
     274Cross=Cross
     275Dome=Dome
     276RadarScanner=Radar Scanner
     277Windmill=Windmill
     278SpireMinaret=Spire/Minaret
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages_de.properties

    r27112 r27131  
    267267RadioMast=Radio Mast
    268268WindMotor=Wind Motor
     269Mast=Mast
     270WindSock=Wind sock
     271Column=Column
     272Obelisk=Obelisk
     273Statue=Statue
     274Cross=Cross
     275Dome=Dome
     276RadarScanner=Radar Scanner
     277Windmill=Windmill
     278SpireMinaret=Spire/Minaret
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages_en.properties

    r27112 r27131  
    267267RadioMast=Radio Mast
    268268WindMotor=Wind Motor
     269Mast=Mast
     270WindSock=Wind sock
     271Column=Column
     272Obelisk=Obelisk
     273Statue=Statue
     274Cross=Cross
     275Dome=Dome
     276RadarScanner=Radar Scanner
     277Windmill=Windmill
     278SpireMinaret=Spire/Minaret
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelLights.java

    r27112 r27131  
    137137                landCatBox.addActionListener(alLandCatBox);
    138138                addLCItem("", Cat.NONE);
     139                addLCItem(Messages.getString("Tower"), Cat.LMK_TOWR);
     140                addLCItem(Messages.getString("WaterTower"), Cat.LMK_WTRT);
    139141                addLCItem(Messages.getString("Chimney"), Cat.LMK_CHMY);
    140                 addLCItem(Messages.getString("Cairn"), Cat.LMK_CARN);
     142                addLCItem(Messages.getString("Mast"), Cat.LMK_MAST);
     143                addLCItem(Messages.getString("Column"), Cat.LMK_CLMN);
    141144                addLCItem(Messages.getString("DishAerial"), Cat.LMK_DSHA);
    142145                addLCItem(Messages.getString("Flagstaff"), Cat.LMK_FLGS);
     
    144147                addLCItem(Messages.getString("Monument"), Cat.LMK_MNMT);
    145148                addLCItem(Messages.getString("RadioMast"), Cat.LMK_RADM);
    146                 addLCItem(Messages.getString("Tower"), Cat.LMK_TOWR);
    147149                addLCItem(Messages.getString("WindMotor"), Cat.LMK_WNDM);
    148                 addLCItem(Messages.getString("WaterTower"), Cat.LMK_WTRT);
     150                addLCItem(Messages.getString("WindSock"), Cat.LMK_WNDS);
     151                addLCItem(Messages.getString("Obelisk"), Cat.LMK_OBLK);
     152                addLCItem(Messages.getString("Statue"), Cat.LMK_STAT);
     153                addLCItem(Messages.getString("Cross"), Cat.LMK_CROS);
     154                addLCItem(Messages.getString("Dome"), Cat.LMK_DOME);
     155                addLCItem(Messages.getString("RadarScanner"), Cat.LMK_SCNR);
     156                addLCItem(Messages.getString("Windmill"), Cat.LMK_WNDL);
     157                addLCItem(Messages.getString("SpireMinaret"), Cat.LMK_SPIR);
     158                addLCItem(Messages.getString("Cairn"), Cat.LMK_CARN);
    149159                landCatBox.setVisible(false);
    150160
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/seamarks/SeaMark.java

    r27124 r27131  
    171171                SIS_PTCL, SIS_PTED, SIS_IPT, SIS_BRTH, SIS_DOCK, SIS_LOCK, SIS_FBAR, SIS_BRDG, SIS_DRDG, SIS_TRFC,
    172172                SIS_DNGR, SIS_OBST, SIS_CABL, SIS_MILY, SIS_DSTR, SIS_WTHR, SIS_STRM, SIS_ICE, SIS_TIME, SIS_TIDE,
    173                 SIS_TSTM, SIS_TGAG, SIS_TSCL, SIS_DIVE, SIS_LGAG,
    174                 LIT_DIRF, LIT_LEDG, LMK_CHMY, LMK_CARN, LMK_DSHA, LMK_FLGS, LMK_FLRS, LMK_MNMT, LMK_RADM, LMK_TOWR, LMK_WNDM, LMK_WTRT
     173                SIS_TSTM, SIS_TGAG, SIS_TSCL, SIS_DIVE, SIS_LGAG, LIT_DIRF, LIT_LEDG,
     174                LMK_CHMY, LMK_CARN, LMK_DSHA, LMK_FLGS, LMK_FLRS, LMK_MNMT, LMK_RADM, LMK_TOWR, LMK_WNDM, LMK_WTRT,
     175                LMK_MAST, LMK_WNDS, LMK_CLMN, LMK_OBLK, LMK_STAT, LMK_CROS, LMK_DOME, LMK_SCNR, LMK_WNDL, LMK_SPIR
    175176        }
    176177
     
    244245                CatSTR.put(Cat.LMK_WNDM, "windmotor");
    245246                CatSTR.put(Cat.LMK_WTRT, "water_tower");
    246         }
     247                CatSTR.put(Cat.LMK_MAST, "mast");
     248                CatSTR.put(Cat.LMK_WNDS, "wind_sock");
     249                CatSTR.put(Cat.LMK_CLMN, "column");
     250                CatSTR.put(Cat.LMK_OBLK, "obelisk");
     251                CatSTR.put(Cat.LMK_STAT, "statue");
     252                CatSTR.put(Cat.LMK_CROS, "cross");
     253                CatSTR.put(Cat.LMK_DOME, "dome");
     254                CatSTR.put(Cat.LMK_SCNR, "radar");
     255                CatSTR.put(Cat.LMK_WNDL, "windmill");
     256                CatSTR.put(Cat.LMK_SPIR, "spire");
     257                                }
    247258
    248259        private Cat category = Cat.NONE;
Note: See TracChangeset for help on using the changeset viewer.