Changeset 484 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2007-12-07T09:50:01+01:00 (17 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/DeleteAction.java
r453 r484 281 281 282 282 @Override public String getModeHelpText() { 283 return "Click to delete. Shift: delete way segment. Alt: delete way+nodes. Ctrl: delete referring objects.";283 return tr("Click to delete. Shift: delete way segment. Alt: delete way+nodes. Ctrl: delete referring objects."); 284 284 } 285 285 } -
trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java
r468 r484 365 365 366 366 @Override public String getModeHelpText() { 367 return "Click to add a new node. Ctrl: no node re-use/auto-insert. Shift: no auto-connect. Alt: new way";367 return tr("Click to add a new node. Ctrl: no node re-use/auto-insert. Shift: no auto-connect. Alt: new way"); 368 368 } 369 369 } -
trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java
r455 r484 292 292 @Override public String getModeHelpText() { 293 293 if (mode == Mode.select) { 294 return "Release the mouse button to select the objects in the rectangle.";294 return tr("Release the mouse button to select the objects in the rectangle."); 295 295 } else if (mode == Mode.move) { 296 return "Release the mouse button to stop moving. Ctrl to merge with nearest node.";296 return tr("Release the mouse button to stop moving. Ctrl to merge with nearest node."); 297 297 } else if (mode == Mode.rotate) { 298 return "Release the mouse button to stop rotating.";298 return tr("Release the mouse button to stop rotating."); 299 299 } else { 300 return "Move objects by dragging; Shift to add to selection; Shift-Ctrl to rotate selected; or change selection";300 return tr("Move objects by dragging; Shift to add to selection; Shift-Ctrl to rotate selected; or change selection"); 301 301 } 302 302 } -
trunk/src/org/openstreetmap/josm/actions/mapmode/ZoomAction.java
r373 r484 72 72 73 73 @Override public String getModeHelpText() { 74 return "Zoom in by dragging.";74 return tr("Zoom in by dragging."); 75 75 } 76 76 } -
trunk/src/org/openstreetmap/josm/gui/GettingStarted.java
r377 r484 50 50 panel = new JPanel(new GridBagLayout()); 51 51 52 panel.add(new JLabel( "<html><h2>You are running the latest \"modeless\" JOSM version.</h2>" +52 panel.add(new JLabel(tr("<html><h2>You are running the latest \"modeless\" JOSM version.</h2>" + 53 53 "<h3>This version (almost) does away with the old edit modes, like \"add node and connect\"<br>" + 54 54 "etc.; instead, there are only four modes: zoom, select, edit, and delete." + … … 59 59 "information about the changes on the OSM wiki, and there's a page on using relations<br>"+ 60 60 "in the JOSM online help." + 61 "</h3>") , GBC.eol());61 "</h3>")), GBC.eol()); 62 62 63 63 // remove these two keys from preferences if present … … 70 70 Main.pref.put("osm-server.version", null); 71 71 Main.pref.put("osm-server.additional-versions", null); 72 panel.add(new JLabel( "<html><h3>Your preferences have been changed by removing <b>osm-server.version</b> and/or <b>osm-server.additional-versions</b> which were still referring to 0.4.</h3></html>"), GBC.eol());72 panel.add(new JLabel(tr("<html><h3>Your preferences have been changed by removing <b>osm-server.version</b> and/or <b>osm-server.additional-versions</b> which were still referring to 0.4.</h3></html>")), GBC.eol()); 73 73 } 74 74 75 addLine("wiki", "Read the [Wiki page on API 0.5]");75 addLine("wiki", tr("Read the [Wiki page on API 0.5]")); 76 76 addGettingStarted(); 77 77 addGettingHelp();
Note:
See TracChangeset
for help on using the changeset viewer.