Changeset 1232 in josm


Ignore:
Timestamp:
Jan 10, 2009 4:41:31 PM (4 years ago)
Author:
stoecker
Message:

updated translations, added greek

Location:
trunk
Files:
2 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.