Changeset 27650 in osm for applications/editors
- Timestamp:
- 2012-01-28T23:36:50+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/HouseNumberTaggingTool/build.xml
r27601 r27650 96 96 <attribute name="Author" value="Oliver Raupach"/> 97 97 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.housenumbertool.HouseNumberTaggingToolPlugin"/> 98 <attribute name="Plugin-Date" value="2012-01-19"/>99 98 <attribute name="Plugin-Description" value="Simple tool to tag house numbers. Select house and press «Y»."/> 100 <attribute name="Plugin-Mainversion" value=" 4667"/>99 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 101 100 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 101 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 102 102 <attribute name="Plugin-Icon" value="images/home-icon32.png"/> 103 103 <attribute name="Plugin-Link" value="http://josm.openstreetmap.de/wiki/Help/Plugin/HouseNumberTaggingTool"/> -
applications/editors/josm/plugins/merge-overlap/build.xml
r27573 r27650 55 55 <attribute name="Plugin-Class" value="mergeoverlap.MergeOverlapPlugin"/> 56 56 <attribute name="Plugin-Description" value="Merge overlapping part of ways."/> 57 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 57 58 <attribute name="Plugin-Icon" value="images/merge_overlap.png"/> 58 59 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> -
applications/editors/josm/plugins/merge-overlap/src/mergeoverlap/MergeOverlapAction.java
r27580 r27650 52 52 53 53 public MergeOverlapAction() { 54 super(tr("Merge overlap" , null), "merge_overlap", tr(55 "Merge overlap of ways.", null),54 super(tr("Merge overlap"), "merge_overlap", 55 tr("Merge overlap of ways."), 56 56 Shortcut.registerShortcut("tools:mergeoverlap",tr("Tool: {0}", tr("Merge overlap")), KeyEvent.VK_O, 57 57 Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT) … … 241 241 // Commit 242 242 Main.main.undoRedo.add(new SequenceCommand( 243 tr("Merge Overlap (combine)" , null), cmds));243 tr("Merge Overlap (combine)"), cmds)); 244 244 getCurrentDataSet().setSelected(sel); 245 245 Main.map.repaint(); … … 477 477 .showMessageDialog( 478 478 Main.parent, 479 tr("<html>A role based relation membership was copied to all new ways.<br>You should verify this and correct it when necessary.</html>" , null),480 tr("Warning" , null), JOptionPane.WARNING_MESSAGE);479 tr("<html>A role based relation membership was copied to all new ways.<br>You should verify this and correct it when necessary.</html>"), 480 tr("Warning"), JOptionPane.WARNING_MESSAGE); 481 481 } else if (warnme) { 482 482 JOptionPane 483 483 .showMessageDialog( 484 484 Main.parent, 485 tr("<html>A relation membership was copied to all new ways.<br>You should verify this and correct it when necessary.</html>" , null),486 tr("Warning" , null), JOptionPane.WARNING_MESSAGE);485 tr("<html>A relation membership was copied to all new ways.<br>You should verify this and correct it when necessary.</html>"), 486 tr("Warning"), JOptionPane.WARNING_MESSAGE); 487 487 } 488 488 489 489 return new SplitWayResult( 490 new SequenceCommand( "Split way", commandList), null,490 new SequenceCommand(tr("Split way"), commandList), null, 491 491 changedWay, newWays); 492 492 }
Note:
See TracChangeset
for help on using the changeset viewer.