Changeset 29692 in osm


Ignore:
Timestamp:
2013-06-23T13:47:14+02:00 (11 years ago)
Author:
bastik
Message:

see #josm8772 - new preset for spain (patch by yopaseopor)

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  
    4444    public static RoadSignsPlugin plugin;
    4545
     46    public final static PresetMetaData PRESET_ES = new PresetMetaData("ES", tr("Spain"), "resource://data/roadsignpresetES.xml", "resource://images/ES/");
    4647    public final static PresetMetaData PRESET_DE = new PresetMetaData("DE", tr("Germany"), "resource://data/roadsignpresetDE.xml", "resource://images/DE/");
    4748    public final static PresetMetaData PRESET_PL = new PresetMetaData("PL", tr("Poland"), "resource://data/roadsignpresetPL.xml", "resource://images/PL/");
    4849    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);
    5051
    5152    public RoadSignsPlugin(PluginInformation info) {
Note: See TracChangeset for help on using the changeset viewer.