Changeset 18404 in osm for applications/editors/josm/plugins/livegps
- Timestamp:
- 2009-11-01T13:19:59+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/livegps
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/livegps/build.xml
r16945 r18404 26 26 <attribute name="Plugin-Description" value="Support live GPS input (moving dot) through a connection to gpsd server."/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/LiveGPS"/> 28 <attribute name="Plugin-Mainversion" value=" 1890"/>28 <attribute name="Plugin-Mainversion" value="2323"/> 29 29 <attribute name="Plugin-Stage" value="50"/> 30 30 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java
r16945 r18404 1 1 package livegps; 2 2 3 import static org.openstreetmap.josm. tools.I18n.marktr;3 import static org.openstreetmap.josm.gui.help.HelpUtil.ht; 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 5 … … 98 98 { 99 99 MainMenu menu = Main.main.menu; 100 lgpsmenu = menu.addMenu( marktr("LiveGPS"), KeyEvent.VK_G, menu.defaultMenuPos);100 lgpsmenu = menu.addMenu(tr("LiveGPS"), KeyEvent.VK_G, menu.defaultMenuPos, ht("/Plugin/LiveGPS")); 101 101 102 102 JosmAction captureAction = new CaptureAction();
Note:
See TracChangeset
for help on using the changeset viewer.