Changeset 29692 in osm for applications/editors
- Timestamp:
- 2013-06-23T13:47:14+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/roadsigns
- Files:
-
- 297 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsPlugin.java
r29232 r29692 44 44 public static RoadSignsPlugin plugin; 45 45 46 public final static PresetMetaData PRESET_ES = new PresetMetaData("ES", tr("Spain"), "resource://data/roadsignpresetES.xml", "resource://images/ES/"); 46 47 public final static PresetMetaData PRESET_DE = new PresetMetaData("DE", tr("Germany"), "resource://data/roadsignpresetDE.xml", "resource://images/DE/"); 47 48 public final static PresetMetaData PRESET_PL = new PresetMetaData("PL", tr("Poland"), "resource://data/roadsignpresetPL.xml", "resource://images/PL/"); 48 49 public final static PresetMetaData PRESET_SK = new PresetMetaData("SK", tr("Slovakia"), "resource://data/roadsignpresetSK.xml", "resource://images/SK/"); 49 public final static Collection<PresetMetaData> DEFAULT_PRESETS = Arrays.asList(PRESET_ DE, PRESET_PL, PRESET_SK);50 public final static Collection<PresetMetaData> DEFAULT_PRESETS = Arrays.asList(PRESET_ES, PRESET_DE, PRESET_PL, PRESET_SK); 50 51 51 52 public RoadSignsPlugin(PluginInformation info) {
Note:
See TracChangeset
for help on using the changeset viewer.