Changeset 283 in josm for src/org/openstreetmap/josm/actions


Ignore:
Timestamp:
2007-07-08T00:44:20+02:00 (18 years ago)
Author:
imi
Message:
  • fixed lots of typos (thanks Bruce)
Location:
src/org/openstreetmap/josm/actions
Files:
5 edited

Legend:

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

    r271 r283  
    9797                cmds.add(new DeleteCommand(selectedWays));
    9898                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));
    100100                Main.ds.setSelected(oldWay);
    101101        }
  • src/org/openstreetmap/josm/actions/GpxExportAction.java

    r143 r283  
    3838public class GpxExportAction extends DiskAccessAction {
    3939
    40         private final static String warningGpl = "<html><font color='red' size='-2'>"+tr("Note: GPL is not compatible to the 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>";
    4141
    4242        private final Layer layer;
  • src/org/openstreetmap/josm/actions/SaveAction.java

    r143 r283  
    6565                } catch (IOException e) {
    6666                        e.printStackTrace();
    67                         JOptionPane.showMessageDialog(Main.parent, tr("An error occoured while saving.")+"\n"+e.getMessage());
     67                        JOptionPane.showMessageDialog(Main.parent, tr("An error occurred while saving.")+"\n"+e.getMessage());
    6868                }
    6969    }
  • src/org/openstreetmap/josm/actions/UploadAction.java

    r258 r283  
    9696                                }
    9797
    98                                 return JOptionPane.showConfirmDialog(Main.parent, p, tr("Upload this changes?"),
     98                                return JOptionPane.showConfirmDialog(Main.parent, p, tr("Upload these changes?"),
    9999                                                JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION;
    100100                        }
  • src/org/openstreetmap/josm/actions/mapmode/AddNodeAction.java

    r198 r283  
    4747                        actions.add(new AddNodeAction(mf,tr("Add node"), Mode.node, tr("Add a new node to the map")));
    4848                        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")));
    5050                        setCurrent(0);
    5151                }
Note: See TracChangeset for help on using the changeset viewer.