Changeset 23009 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-09-06T09:58:53+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/toms/src/toms
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/toms/src/toms/dialogs/SmpDialogAction.java
r23005 r23009 134 134 public JComboBox cbM01Racon = null; 135 135 public JTextField tfM01Racon = null; 136 p rivateJLabel lM01Racon = null;136 public JLabel lM01Racon = null; 137 137 public JCheckBox cM01Fog = null; 138 138 public JComboBox cbM01Fog = null; 139 p rivateJLabel lM01FogGroup = null;139 public JLabel lM01FogGroup = null; 140 140 public JTextField tfM01FogGroup = null; 141 p rivateJLabel lM01FogPeriod = null;141 public JLabel lM01FogPeriod = null; 142 142 public JTextField tfM01FogPeriod = null; 143 143 public JCheckBox cM01Fired = null; … … 145 145 public JRadioButton rbM01Fired1 = null; 146 146 public JRadioButton rbM01FiredN = null; 147 p rivateJLabel lM01Kennung = null;147 public JLabel lM01Kennung = null; 148 148 public JComboBox cbM01Kennung = null; 149 p rivateJLabel lM01Height = null;149 public JLabel lM01Height = null; 150 150 public JTextField tfM01Height = null; 151 p rivateJLabel lM01Range = null;152 p rivateJLabel lM01Group = null;151 public JLabel lM01Range = null; 152 public JLabel lM01Group = null; 153 153 public JTextField tfM01Group = null; 154 p rivateJLabel lM01RepeatTime = null;154 public JLabel lM01RepeatTime = null; 155 155 public JTextField tfM01RepeatTime = null; 156 p rivateJLabel lM01Sector = null;156 public JLabel lM01Sector = null; 157 157 public JComboBox cbM01Sector = null; 158 p rivateJLabel lM01Colour = null;158 public JLabel lM01Colour = null; 159 159 public JComboBox cbM01Colour = null; 160 p rivateJLabel lM01Bearing = null;160 public JLabel lM01Bearing = null; 161 161 public JTextField tfM01Bearing = null; 162 162 public JTextField tfM02Bearing = null; … … 439 439 } else if (str.equals("yellow")) { //$NON-NLS-1$ 440 440 buoy = new BuoySaw(this, node); 441 return;442 } else {443 buoy = new BuoyUkn(this, Messages.getString("SmpDialogAction.82")); //$NON-NLS-1$444 buoy.setNode(node);445 441 return; 446 442 } -
applications/editors/josm/plugins/toms/src/toms/msg/messages.properties
r23006 r23009 17 17 SmpDialogAction.129=Sector: 18 18 SmpDialogAction.131=Colour: 19 SmpDialogAction.133=Brg: \u FFFD- \uFFFD, r:19 SmpDialogAction.133=Brg: \u00B0- \u00B0, r: 20 20 SmpDialogAction.134=-A 21 21 SmpDialogAction.140=Single … … 47 47 SmpDialogAction.191=R 48 48 SmpDialogAction.192=G 49 SmpDialogAction.194= Com49 SmpDialogAction.194=All 50 50 SmpDialogAction.195=1 51 51 SmpDialogAction.196=2 -
applications/editors/josm/plugins/toms/src/toms/msg/messages_de.properties
r23006 r23009 61 61 SmpDialogAction.27=Bitte einen Knoten anwählen 62 62 SmpDialogAction.28=Bitte nur einen Knoten anwählen 63 SmpDialogAction.82=Parse-Error: ungültige Farbe64 63 SmpDialogAction.9=Seamap Editor 65 64 SmpDialogAction.4=OpenSeaMap Editor -
applications/editors/josm/plugins/toms/src/toms/msg/messages_en.properties
r23006 r23009 17 17 SmpDialogAction.129=Sector: 18 18 SmpDialogAction.131=Colour: 19 SmpDialogAction.133=Brg: \u FFFD- \uFFFD, r:19 SmpDialogAction.133=Brg: \u00B0- \u00B0, r: 20 20 SmpDialogAction.134=-A 21 21 SmpDialogAction.140=Single … … 47 47 SmpDialogAction.191=R 48 48 SmpDialogAction.192=G 49 SmpDialogAction.194= Com49 SmpDialogAction.194=All 50 50 SmpDialogAction.195=1 51 51 SmpDialogAction.196=2 … … 63 63 SmpDialogAction.28=Please select only one node 64 64 SmpDialogAction.4=Edit OpenSeaMap 65 SmpDialogAction.82=Parse-Error: Invalid colour66 65 SmpDialogAction.9=Seamark Editor 67 66 SmpDialogAction.91=Seamark not set -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/Buoy.java
r23000 r23009 339 339 dlg.cM01TopMark.setEnabled(false); 340 340 dlg.cbM01TopMark.removeAllItems(); 341 dlg.cbM01TopMark.set Enabled(false);341 dlg.cbM01TopMark.setVisible(false); 342 342 setTopMark(false); 343 343 dlg.cM01Radar.setSelected(false); … … 346 346 dlg.cM01Racon.setEnabled(false); 347 347 dlg.cbM01Racon.removeAllItems(); 348 dlg.cbM01Racon.set Enabled(false);348 dlg.cbM01Racon.setVisible(false); 349 349 dlg.tfM01Racon.setText(""); 350 dlg.tfM01Racon.setEnabled(false); 350 dlg.tfM01Racon.setVisible(false); 351 dlg.lM01Racon.setVisible(false); 351 352 dlg.cM01Fog.setSelected(false); 352 353 dlg.cM01Fog.setEnabled(false); 353 354 dlg.cbM01Fog.removeAllItems(); 354 dlg.cbM01Fog.set Enabled(false);355 dlg.cbM01Fog.setVisible(false); 355 356 dlg.tfM01FogGroup.setText(""); 356 dlg.tfM01FogGroup.setEnabled(false); 357 dlg.tfM01FogGroup.setVisible(false); 358 dlg.lM01FogGroup.setVisible(false); 357 359 dlg.tfM01FogPeriod.setText(""); 358 dlg.tfM01FogPeriod.setEnabled(false); 360 dlg.tfM01FogPeriod.setVisible(false); 361 dlg.lM01FogPeriod.setVisible(false); 359 362 dlg.cM01Fired.setSelected(false); 360 363 dlg.cM01Fired.setEnabled(false); … … 363 366 dlg.rbM01FiredN.setEnabled(false); 364 367 dlg.cbM01Kennung.removeAllItems(); 365 dlg.cbM01Kennung.setEnabled(false); 368 dlg.cbM01Kennung.setVisible(false); 369 dlg.lM01Kennung.setVisible(false); 366 370 dlg.tfM01Height.setText(""); 367 dlg.tfM01Height.setEnabled(false); 371 dlg.tfM01Height.setVisible(false); 372 dlg.lM01Height.setVisible(false); 368 373 dlg.tfM01Range.setText(""); 369 dlg.tfM01Range.setEnabled(false); 370 dlg.cbM01Colour.setEnabled(false); 371 dlg.cbM01Sector.setEnabled(false); 374 dlg.tfM01Range.setVisible(false); 375 dlg.lM01Range.setVisible(false); 376 dlg.cbM01Colour.setVisible(false); 377 dlg.lM01Colour.setVisible(false); 378 dlg.cbM01Sector.setVisible(false); 379 dlg.lM01Sector.setVisible(false); 372 380 dlg.tfM01Group.setText(""); 373 dlg.tfM01Group.setEnabled(false); 381 dlg.tfM01Group.setVisible(false); 382 dlg.lM01Group.setVisible(false); 374 383 dlg.tfM01RepeatTime.setText(""); 375 dlg.tfM01RepeatTime.setEnabled(false); 384 dlg.tfM01RepeatTime.setVisible(false); 385 dlg.lM01RepeatTime.setVisible(false); 376 386 dlg.tfM01Bearing.setText(""); 377 dlg.tfM01Bearing.setEnabled(false); 387 dlg.tfM01Bearing.setVisible(false); 388 dlg.lM01Bearing.setVisible(false); 378 389 dlg.tfM02Bearing.setText(""); 379 dlg.tfM02Bearing.set Enabled(false);390 dlg.tfM02Bearing.setVisible(false); 380 391 dlg.tfM01Radius.setText(""); 381 dlg.tfM01Radius.set Enabled(false);392 dlg.tfM01Radius.setVisible(false); 382 393 383 394 dlg.bM01Save.setEnabled(false);
Note:
See TracChangeset
for help on using the changeset viewer.