Changeset 1218 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2009-01-09T01:01:59+01:00 (16 years ago)
Author:
ulfl
Message:

fix capitalization and other minor menu titles stuff

Location:
trunk/src/org/openstreetmap/josm/actions
Files:
8 edited

Legend:

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

    r1169 r1218  
    4747
    4848    public AddNodeAction() {
    49         super(tr("Add Node"), "addnode", tr("Add a node by entering latitude and longitude."),
     49        super(tr("Add Node..."), "addnode", tr("Add a node by entering latitude and longitude."),
    5050        Shortcut.registerShortcut("addnode", tr("Edit: {0}", tr("Add Node")), KeyEvent.VK_D, Shortcut.GROUP_EDIT,
    5151        Shortcut.SHIFT_DEFAULT), true);
  • trunk/src/org/openstreetmap/josm/actions/JoinNodeWayAction.java

    r1169 r1218  
    2727public class JoinNodeWayAction extends JosmAction {
    2828    public JoinNodeWayAction() {
    29         super(tr("Join node to way"), "joinnodeway", tr("Join a node into the nearest way segments"),
    30             Shortcut.registerShortcut("tools:joinnodeway", tr("Tool: {0}", tr("Join node to way")), KeyEvent.VK_J, Shortcut.GROUP_EDIT), true);
     29        super(tr("Join Node to Way"), "joinnodeway", tr("Join a node into the nearest way segments"),
     30            Shortcut.registerShortcut("tools:joinnodeway", tr("Tool: {0}", tr("Join Node to Way")), KeyEvent.VK_J, Shortcut.GROUP_EDIT), true);
    3131    }
    3232
  • trunk/src/org/openstreetmap/josm/actions/OrthogonalizeAction.java

    r1195 r1218  
    3939
    4040    public OrthogonalizeAction() {
    41         super(tr("Orthogonalize shape"),
     41        super(tr("Orthogonalize Shape"),
    4242            "ortho",
    4343            tr("Move nodes so all angles are 90 or 270 degree"),
    44             Shortcut.registerShortcut("tools:orthogonalize", tr("Tool: {0}", tr("Orthogonalize")),
     44            Shortcut.registerShortcut("tools:orthogonalize", tr("Tool: {0}", tr("Orthogonalize Shape")),
    4545            KeyEvent.VK_Q,
    4646            Shortcut.GROUP_EDIT), true);
  • trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java

    r1169 r1218  
    2929
    3030    public ReverseWayAction() {
    31         super(tr("Reverse ways"), "wayflip", tr("Reverse the direction of all selected ways."),
    32         Shortcut.registerShortcut("tools:reverse", tr("Tool: {0}", tr("Reverse ways")), KeyEvent.VK_R, Shortcut.GROUP_EDIT), true);
     31        super(tr("Reverse Ways"), "wayflip", tr("Reverse the direction of all selected ways."),
     32        Shortcut.registerShortcut("tools:reverse", tr("Tool: {0}", tr("Reverse Ways")), KeyEvent.VK_R, Shortcut.GROUP_EDIT), true);
    3333    }
    3434
  • trunk/src/org/openstreetmap/josm/actions/SaveAsAction.java

    r1212 r1218  
    2222     */
    2323    public SaveAsAction(Layer layer) {
    24         super(tr("Save as..."), "save_as", tr("Save the current data to a new file."),
    25         Shortcut.registerShortcut("system:saveas", tr("File: {0}", tr("Save as...")), KeyEvent.VK_S, Shortcut.GROUP_MENU, Shortcut.SHIFT_DEFAULT), layer);
     24        super(tr("Save As..."), "save_as", tr("Save the current data to a new file."),
     25        Shortcut.registerShortcut("system:saveas", tr("File: {0}", tr("Save As...")), KeyEvent.VK_S, Shortcut.GROUP_MENU, Shortcut.SHIFT_DEFAULT), layer);
    2626    }
    2727
  • trunk/src/org/openstreetmap/josm/actions/ZoomInAction.java

    r1169 r1218  
    1313
    1414    public ZoomInAction() {
    15         super(tr("Zoom in"), "dialogs/zoomin", tr("Zoom in"),
    16         Shortcut.registerShortcut("view:zoomin", tr("View: {0}", tr("Zoom in")), KeyEvent.VK_PLUS, Shortcut.GROUP_DIRECT), true);
     15        super(tr("Zoom In"), "dialogs/zoomin", tr("Zoom In"),
     16        Shortcut.registerShortcut("view:zoomin", tr("View: {0}", tr("Zoom In")), KeyEvent.VK_PLUS, Shortcut.GROUP_DIRECT), true);
    1717        setEnabled(true);
    1818    }
  • trunk/src/org/openstreetmap/josm/actions/ZoomOutAction.java

    r1169 r1218  
    1313
    1414    public ZoomOutAction() {
    15         super(tr("Zoom out"), "dialogs/zoomout", tr("Zoom out"),
    16         Shortcut.registerShortcut("view:zoomout", tr("View: {0}", tr("Zoom out")), KeyEvent.VK_MINUS, Shortcut.GROUP_DIRECT), true);
     15        super(tr("Zoom Out"), "dialogs/zoomout", tr("Zoom Out"),
     16        Shortcut.registerShortcut("view:zoomout", tr("View: {0}", tr("Zoom Out")), KeyEvent.VK_MINUS, Shortcut.GROUP_DIRECT), true);
    1717        setEnabled(true);
    1818    }
  • trunk/src/org/openstreetmap/josm/actions/audio/AudioPlayPauseAction.java

    r1169 r1218  
    1616
    1717    public AudioPlayPauseAction() {
    18         super(tr("Play/pause"), "audio-playpause", tr("Play/pause audio."),
    19         Shortcut.registerShortcut("audio:pause", tr("Audio: {0}", tr("Play/pause")), KeyEvent.VK_PERIOD, Shortcut.GROUP_DIRECT), true);
     18        super(tr("Play/Pause"), "audio-playpause", tr("Play/pause audio."),
     19        Shortcut.registerShortcut("audio:pause", tr("Audio: {0}", tr("Play/Pause")), KeyEvent.VK_PERIOD, Shortcut.GROUP_DIRECT), true);
    2020    }
    2121
Note: See TracChangeset for help on using the changeset viewer.