Changeset 1232 in josm for trunk/src


Ignore:
Timestamp:
2009-01-10T16:41:31+01:00 (15 years ago)
Author:
stoecker
Message:

updated translations, added greek

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/AddNodeAction.java

    r1218 r1232  
    4848    public AddNodeAction() {
    4949        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,
    5151        Shortcut.SHIFT_DEFAULT), true);
    5252    }
     
    7171        while(nnew == null) {
    7272            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);
    7474            if (!Integer.valueOf(JOptionPane.OK_OPTION).equals(pane.getValue()))
    7575                return;
Note: See TracChangeset for help on using the changeset viewer.