Ignore:
Timestamp:
2009-11-01T13:19:59+01:00 (15 years ago)
Author:
stoecker
Message:

updated some stuff to current JOSM

Location:
applications/editors/josm/plugins/walkingpapers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/walkingpapers/build.xml

    r17822 r18404  
    2626                <attribute name="Plugin-Description" value="Supports downloading tiled, scanned maps from walking-papers.org. This plugin is still under early development and may be buggy."/>
    2727                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/WalkingPapers"/>
    28                 <attribute name="Plugin-Mainversion" value="2196"/>
     28                <attribute name="Plugin-Mainversion" value="2323"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/walkingpapers/src/org/openstreetmap/josm/plugins/walkingpapers/WalkingPapersPlugin.java

    r18198 r18404  
    11package org.openstreetmap.josm.plugins.walkingpapers;
    22
     3import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
    34import static org.openstreetmap.josm.tools.I18n.tr;
    45
     
    2021public class WalkingPapersPlugin extends Plugin
    2122{
    22         static JMenu walkingPapersMenu;
    23        
     23    static JMenu walkingPapersMenu;
     24
    2425    public WalkingPapersPlugin()
    2526    {
    2627        MainMenu menu = Main.main.menu;
    27         walkingPapersMenu = menu.addMenu(tr("Walking Papers"), KeyEvent.VK_K, menu.defaultMenuPos);
     28        walkingPapersMenu = menu.addMenu(tr("Walking Papers"), KeyEvent.VK_K, menu.defaultMenuPos, ht("/Plugin/WalkingPapers"));
    2829        walkingPapersMenu.add(new JMenuItem(new WalkingPapersAddLayerAction()));
    2930    }
    30 
    3131}
Note: See TracChangeset for help on using the changeset viewer.