Changeset 283 in josm for src/org/openstreetmap/josm/actions
- Timestamp:
- 2007-07-08T00:44:20+02:00 (18 years ago)
- Location:
- src/org/openstreetmap/josm/actions
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/actions/CombineWayAction.java
r271 r283 97 97 cmds.add(new DeleteCommand(selectedWays)); 98 98 cmds.add(new ChangeCommand(oldWay, newWay)); 99 Main.main.editLayer().add(new SequenceCommand(tr("Combine {0} Ways", selectedWays.size()), cmds));99 Main.main.editLayer().add(new SequenceCommand(tr("Combine {0} ways", selectedWays.size()), cmds)); 100 100 Main.ds.setSelected(oldWay); 101 101 } -
src/org/openstreetmap/josm/actions/GpxExportAction.java
r143 r283 38 38 public class GpxExportAction extends DiskAccessAction { 39 39 40 private final static String warningGpl = "<html><font color='red' size='-2'>"+tr("Note: GPL is not compatible tothe OSM license. Do not upload GPL licensed tracks.")+"</html>";40 private final static String warningGpl = "<html><font color='red' size='-2'>"+tr("Note: GPL is not compatible with the OSM license. Do not upload GPL licensed tracks.")+"</html>"; 41 41 42 42 private final Layer layer; -
src/org/openstreetmap/josm/actions/SaveAction.java
r143 r283 65 65 } catch (IOException e) { 66 66 e.printStackTrace(); 67 JOptionPane.showMessageDialog(Main.parent, tr("An error occ oured while saving.")+"\n"+e.getMessage());67 JOptionPane.showMessageDialog(Main.parent, tr("An error occurred while saving.")+"\n"+e.getMessage()); 68 68 } 69 69 } -
src/org/openstreetmap/josm/actions/UploadAction.java
r258 r283 96 96 } 97 97 98 return JOptionPane.showConfirmDialog(Main.parent, p, tr("Upload th ischanges?"),98 return JOptionPane.showConfirmDialog(Main.parent, p, tr("Upload these changes?"), 99 99 JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION; 100 100 } -
src/org/openstreetmap/josm/actions/mapmode/AddNodeAction.java
r198 r283 47 47 actions.add(new AddNodeAction(mf,tr("Add node"), Mode.node, tr("Add a new node to the map"))); 48 48 actions.add(new AddNodeAction(mf, tr("Add node into segment"), Mode.nodesegment,tr( "Add a node into an existing segment"))); 49 actions.add(new AddNodeAction(mf, tr("Add node and connect"), Mode.autonode,tr( "Add a node and connect it to the selected (previous added) node"))); 49 actions.add(new AddNodeAction(mf, tr("Add node and connect"), Mode.autonode,tr( "Add a node and connect it to the selected (previously added) node"))); 50 50 setCurrent(0); 51 51 }
Note:
See TracChangeset
for help on using the changeset viewer.