- Timestamp:
- 2009-01-10T16:41:31+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AddNodeAction.java
r1218 r1232 48 48 public AddNodeAction() { 49 49 super(tr("Add Node..."), "addnode", tr("Add a node by entering latitude and longitude."), 50 Shortcut.registerShortcut("addnode", tr("Edit: {0}", tr("Add Node ")), KeyEvent.VK_D, Shortcut.GROUP_EDIT,50 Shortcut.registerShortcut("addnode", tr("Edit: {0}", tr("Add Node...")), KeyEvent.VK_D, Shortcut.GROUP_EDIT, 51 51 Shortcut.SHIFT_DEFAULT), true); 52 52 } … … 71 71 while(nnew == null) { 72 72 JOptionPane pane = new JOptionPane(p, JOptionPane.PLAIN_MESSAGE, JOptionPane.OK_CANCEL_OPTION); 73 pane.createDialog(Main.parent, tr("Add Node ")).setVisible(true);73 pane.createDialog(Main.parent, tr("Add Node...")).setVisible(true); 74 74 if (!Integer.valueOf(JOptionPane.OK_OPTION).equals(pane.getValue())) 75 75 return;
Note:
See TracChangeset
for help on using the changeset viewer.