Ignore:
Timestamp:
2011-04-20T15:14:02+02:00 (13 years ago)
Author:
stoecker
Message:

fix #6153 - spelling fixes

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/InspectPrimitiveDialog.java

    r3935 r4043  
    6161
    6262    public InspectPrimitiveDialog(Collection<OsmPrimitive> primitives) {
    63         super(Main.parent, tr("Advanced object info"), new String[] {"Close"});
     63        super(Main.parent, tr("Advanced object info"), new String[] {tr("Close")});
    6464        this.primitives = primitives;
    6565        setPreferredSize(new Dimension(750, 550));
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheTableColumnModel.java

    r3083 r4043  
    1919        // column 0 - Id
    2020        col = new TableColumn(0);
    21         col.setHeaderValue("ID");
     21        col.setHeaderValue(tr("ID"));
    2222        col.setResizable(true);
    2323        col.setWidth(20);
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java

    r3530 r4043  
    665665            gc.gridx = 2;
    666666            gc.weightx = 0.0;
    667             pnl.add(new JLabel("Time: "),gc);
     667            pnl.add(new JLabel(tr("Time:")),gc);
    668668
    669669            gc.gridx = 3;
     
    698698            gc.gridx = 3;
    699699            gc.weightx = 0.0;
    700             pnl.add(new JLabel("Time:"),gc);
     700            pnl.add(new JLabel(tr("Time:")),gc);
    701701
    702702            gc.gridx = 4;
     
    729729            gc.gridx = 3;
    730730            gc.weightx = 0.0;
    731             pnl.add(new JLabel("Time:"),gc);
     731            pnl.add(new JLabel(tr("Time:")),gc);
    732732
    733733            gc.gridx = 4;
  • trunk/src/org/openstreetmap/josm/gui/layer/GpxLayer.java

    r4021 r4043  
    641641            .add(
    642642                    new JLabel(
    643                             tr("<html>Upload of unprocessed GPS data as map data is considered harmful.<br>If you want to upload traces, look here:")),
     643                            tr("<html>Upload of unprocessed GPS data as map data is considered harmful.<br>If you want to upload traces, look here:</html>")),
    644644                            GBC.eol());
    645645            msg.add(new UrlLabel(tr("http://www.openstreetmap.org/traces")), GBC.eop());
  • trunk/src/org/openstreetmap/josm/gui/layer/WMSLayer.java

    r3826 r4043  
    232232                + "This is likely to lead to invalid WMS request. You should check your<br>"
    233233                + "preference settings.<br>"
    234                 + "Do you want to fetch WMS tiles anyway?",
     234                + "Do you want to fetch WMS tiles anyway?</html>",
    235235                url);
    236236        String [] options = new String[] {
Note: See TracChangeset for help on using the changeset viewer.