- Timestamp:
- 2011-11-19T23:38:21+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/GPXSettingsPanel.java
r4513 r4599 38 38 39 39 40 private JRadioButton drawRawGpsLinesGlobal = new JRadioButton(tr("Use global settings ."));40 private JRadioButton drawRawGpsLinesGlobal = new JRadioButton(tr("Use global settings")); 41 41 private JRadioButton drawRawGpsLinesAll = new JRadioButton(tr("All")); 42 42 private JRadioButton drawRawGpsLinesLocal = new JRadioButton(tr("Local files")); … … 46 46 private JTextField drawRawGpsMaxLineLengthLocal = new JTextField(8); 47 47 private JTextField drawLineWidth = new JTextField(2); 48 private JCheckBox forceRawGpsLines = new JCheckBox(tr("Force lines if no segments imported ."));49 private JCheckBox largeGpsPoints = new JCheckBox(tr("Draw large GPS points ."));50 private JCheckBox hdopCircleGpsPoints = new JCheckBox(tr("Draw a circle f orm HDOP value."));48 private JCheckBox forceRawGpsLines = new JCheckBox(tr("Force lines if no segments imported")); 49 private JCheckBox largeGpsPoints = new JCheckBox(tr("Draw large GPS points")); 50 private JCheckBox hdopCircleGpsPoints = new JCheckBox(tr("Draw a circle from HDOP value")); 51 51 private ButtonGroup colorGroup; 52 52 private JRadioButton colorTypeVelocity = new JRadioButton(tr("Velocity (red = slow, green = fast)")); … … 55 55 private JRadioButton colorTypeTime = new JRadioButton(tr("Track date")); 56 56 private JRadioButton colorTypeNone = new JRadioButton(tr("Single Color (can be customized for named layers)")); 57 private JRadioButton colorTypeGlobal = new JRadioButton(tr("Use global settings ."));57 private JRadioButton colorTypeGlobal = new JRadioButton(tr("Use global settings")); 58 58 private JComboBox colorTypeVelocityTune = new JComboBox(new String[] {tr("Car"), tr("Bicycle"), tr("Foot")}); 59 private JCheckBox makeAutoMarkers = new JCheckBox(tr("Create markers when reading GPX ."));59 private JCheckBox makeAutoMarkers = new JCheckBox(tr("Create markers when reading GPX")); 60 60 private JCheckBox drawGpsArrows = new JCheckBox(tr("Draw Direction Arrows")); 61 61 private JCheckBox drawGpsArrowsFast = new JCheckBox(tr("Fast drawing (looks uglier)"));
Note:
See TracChangeset
for help on using the changeset viewer.