Changeset 6150 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2013-08-14T16:23:33+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/session/GpxTracksSessionExporter.java
r6084 r6150 68 68 /* I18n: Refer to a OSM data file in session file */ link = new JRadioButton(tr("local file")); 69 69 link.putClientProperty("actionname", "link"); 70 link.setToolTipText(tr("Link to a OSM datafile on your local disk."));70 link.setToolTipText(tr("Link to a GPX file on your local disk.")); 71 71 /* I18n: Include OSM data in session file */ include = new JRadioButton(tr("include")); 72 include.setToolTipText(tr("Include OSMdata in the .joz session file."));72 include.setToolTipText(tr("Include GPX data in the .joz session file.")); 73 73 include.putClientProperty("actionname", "include"); 74 74 ButtonGroup group = new ButtonGroup(); … … 88 88 89 89 JPanel cardInclude = new JPanel(new GridBagLayout()); 90 JLabel lblIncl = new JLabel(tr(" OSMdata will be included in the session file."));90 JLabel lblIncl = new JLabel(tr("GPX data will be included in the session file.")); 91 91 lblIncl.setFont(lblIncl.getFont().deriveFont(Font.PLAIN)); 92 92 cardInclude.add(lblIncl, GBC.eol().fill(GBC.HORIZONTAL));
Note:
See TracChangeset
for help on using the changeset viewer.