Changeset 6150 in josm


Ignore:
Timestamp:
2013-08-14T16:23:33+02:00 (11 years ago)
Author:
bastiK
Message:

see #4029 - fix: strings not updated after copy & paste

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/session/GpxTracksSessionExporter.java

    r6084 r6150  
    6868        /* I18n: Refer to a OSM data file in session file */ link = new JRadioButton(tr("local file"));
    6969        link.putClientProperty("actionname", "link");
    70         link.setToolTipText(tr("Link to a OSM data file on your local disk."));
     70        link.setToolTipText(tr("Link to a GPX file on your local disk."));
    7171        /* I18n: Include OSM data in session file */ include = new JRadioButton(tr("include"));
    72         include.setToolTipText(tr("Include OSM data in the .joz session file."));
     72        include.setToolTipText(tr("Include GPX data in the .joz session file."));
    7373        include.putClientProperty("actionname", "include");
    7474        ButtonGroup group = new ButtonGroup();
     
    8888
    8989        JPanel cardInclude = new JPanel(new GridBagLayout());
    90         JLabel lblIncl = new JLabel(tr("OSM data will be included in the session file."));
     90        JLabel lblIncl = new JLabel(tr("GPX data will be included in the session file."));
    9191        lblIncl.setFont(lblIncl.getFont().deriveFont(Font.PLAIN));
    9292        cardInclude.add(lblIncl, GBC.eol().fill(GBC.HORIZONTAL));
Note: See TracChangeset for help on using the changeset viewer.