Changeset 4599 in josm


Ignore:
Timestamp:
Nov 19, 2011 11:38:21 PM (18 months ago)
Author:
stoecker
Message:

fix #7068 - spelling fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/GPXSettingsPanel.java

    r4513 r4599  
    3838 
    3939 
    40     private JRadioButton drawRawGpsLinesGlobal = new JRadioButton(tr("Use global settings.")); 
     40    private JRadioButton drawRawGpsLinesGlobal = new JRadioButton(tr("Use global settings")); 
    4141    private JRadioButton drawRawGpsLinesAll = new JRadioButton(tr("All")); 
    4242    private JRadioButton drawRawGpsLinesLocal = new JRadioButton(tr("Local files")); 
     
    4646    private JTextField drawRawGpsMaxLineLengthLocal = new JTextField(8); 
    4747    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 form 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")); 
    5151    private ButtonGroup colorGroup; 
    5252    private JRadioButton colorTypeVelocity = new JRadioButton(tr("Velocity (red = slow, green = fast)")); 
     
    5555    private JRadioButton colorTypeTime = new JRadioButton(tr("Track date")); 
    5656    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")); 
    5858    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")); 
    6060    private JCheckBox drawGpsArrows = new JCheckBox(tr("Draw Direction Arrows")); 
    6161    private JCheckBox drawGpsArrowsFast = new JCheckBox(tr("Fast drawing (looks uglier)")); 
Note: See TracChangeset for help on using the changeset viewer.