Changeset 1218 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2009-01-09T01:01:59+01:00 (16 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AddNodeAction.java
r1169 r1218 47 47 48 48 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."), 50 50 Shortcut.registerShortcut("addnode", tr("Edit: {0}", tr("Add Node")), KeyEvent.VK_D, Shortcut.GROUP_EDIT, 51 51 Shortcut.SHIFT_DEFAULT), true); -
trunk/src/org/openstreetmap/josm/actions/JoinNodeWayAction.java
r1169 r1218 27 27 public class JoinNodeWayAction extends JosmAction { 28 28 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); 31 31 } 32 32 -
trunk/src/org/openstreetmap/josm/actions/OrthogonalizeAction.java
r1195 r1218 39 39 40 40 public OrthogonalizeAction() { 41 super(tr("Orthogonalize shape"),41 super(tr("Orthogonalize Shape"), 42 42 "ortho", 43 43 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")), 45 45 KeyEvent.VK_Q, 46 46 Shortcut.GROUP_EDIT), true); -
trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java
r1169 r1218 29 29 30 30 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); 33 33 } 34 34 -
trunk/src/org/openstreetmap/josm/actions/SaveAsAction.java
r1212 r1218 22 22 */ 23 23 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); 26 26 } 27 27 -
trunk/src/org/openstreetmap/josm/actions/ZoomInAction.java
r1169 r1218 13 13 14 14 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); 17 17 setEnabled(true); 18 18 } -
trunk/src/org/openstreetmap/josm/actions/ZoomOutAction.java
r1169 r1218 13 13 14 14 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); 17 17 setEnabled(true); 18 18 } -
trunk/src/org/openstreetmap/josm/actions/audio/AudioPlayPauseAction.java
r1169 r1218 16 16 17 17 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); 20 20 } 21 21
Note:
See TracChangeset
for help on using the changeset viewer.