Changeset 23074 in osm for applications/editors
- Timestamp:
- 2010-09-08T14:57:33+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/toms/src
- Files:
-
- 3 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/toms/src/toms/dialogs/SmpDialogAction.java
r23073 r23074 837 837 cbM01CatOfMark.addItem(Messages.getString("SmpDialogAction.207")); //$NON-NLS-1$ 838 838 cbM01CatOfMark.addItem(Messages.getString("SmpDialogAction.208")); //$NON-NLS-1$ 839 cbM01CatOfMark.addItem(Messages.getString("SmpDialogAction.209")); //$NON-NLS-1$ 839 840 } 840 841 break; -
applications/editors/josm/plugins/toms/src/toms/msg/messages.properties
r23066 r23074 79 79 SmpDialogAction.207=Major Light 80 80 SmpDialogAction.208=Minor Light 81 SmpDialogAction.209=Light Float81 SmpDialogAction.209=Light Vessel 82 82 SmpDialogAction.210=Yellow X 83 83 SmpDialogAction.211=Red X -
applications/editors/josm/plugins/toms/src/toms/msg/messages_de.properties
r23066 r23074 77 77 SmpDialogAction.207=primäres Feuer 78 78 SmpDialogAction.208=sekundäres Feuer 79 SmpDialogAction.209=Feuer floss79 SmpDialogAction.209=Feuerschiff 80 80 SmpDialogAction.210=X gelb 81 81 SmpDialogAction.211=X rot -
applications/editors/josm/plugins/toms/src/toms/msg/messages_en.properties
r23066 r23074 79 79 SmpDialogAction.207=Major Light 80 80 SmpDialogAction.208=Minor Light 81 SmpDialogAction.209=Light Float81 SmpDialogAction.209=Light Vessel 82 82 SmpDialogAction.210=Yellow X 83 83 SmpDialogAction.211=Red X -
applications/editors/josm/plugins/toms/src/toms/seamarks/SeaMark.java
r23073 r23074 64 64 public final static int LIGHT_MAJOR = 2; 65 65 public final static int LIGHT_MINOR = 3; 66 public final static int LIGHT_VESSEL = 4; 66 67 67 68 /** -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyNota.java
r23073 r23074 86 86 break; 87 87 88 case SeaMark.LIGHT_VESSEL: 89 dlg.lM01Icon.setIcon(new ImageIcon(getClass().getResource( 90 "/images/Major_Float.png"))); 91 break; 92 88 93 default: 89 94 }
Note:
See TracChangeset
for help on using the changeset viewer.