Ticket #21865: harmonize_strings.patch

File harmonize_strings.patch, 39.1 KB (added by gaben, 4 years ago)
  • src/org/openstreetmap/josm/data/validation/tests/ApiCapabilitiesTest.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/data/validation/tests/ApiCapabilitiesTest.java b/src/org/openstreetmap/josm/data/validation/tests/ApiCapabilitiesTest.java
    a b  
    2626     * Constructs a new {@code ApiCapabilitiesTest}.
    2727     */
    2828    public ApiCapabilitiesTest() {
    29         super(tr("API Capabilities"), tr("Checks for errors against API capabilities"));
     29        super(tr("API capabilities"), tr("Checks for errors against API capabilities"));
    3030    }
    3131
    3232    @Override
  • src/org/openstreetmap/josm/data/validation/tests/ConditionalKeys.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/data/validation/tests/ConditionalKeys.java b/src/org/openstreetmap/josm/data/validation/tests/ConditionalKeys.java
    a b  
    4747     * Constructs a new {@code ConditionalKeys}.
    4848     */
    4949    public ConditionalKeys() {
    50         super(tr("Conditional Keys"), tr("Tests for the correct usage of ''*:conditional'' tags."));
     50        super(tr("Conditional keys"), tr("Tests for the correct usage of ''*:conditional'' tags"));
    5151    }
    5252
    5353    @Override
  • src/org/openstreetmap/josm/data/validation/tests/TagChecker.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java b/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java
    a b  
    11211121        GBC a = GBC.eol();
    11221122        a.anchor = GridBagConstraints.LINE_END;
    11231123
    1124         testPanel.add(new JLabel(name+" :"), GBC.eol().insets(3, 0, 0, 0));
     1124        testPanel.add(new JLabel(name+":"), GBC.eol().insets(3, 0, 0, 0));
    11251125
    1126         prefCheckKeys = new JCheckBox(tr("Check property keys."), Config.getPref().getBoolean(PREF_CHECK_KEYS, true));
    1127         prefCheckKeys.setToolTipText(tr("Validate that property keys are valid checking against list of words."));
     1126        prefCheckKeys = new JCheckBox(tr("Check property keys"), Config.getPref().getBoolean(PREF_CHECK_KEYS, true));
     1127        prefCheckKeys.setToolTipText(tr("Validate that property keys are valid checking against list of words"));
    11281128        testPanel.add(prefCheckKeys, GBC.std().insets(20, 0, 0, 0));
    11291129
    11301130        prefCheckKeysBeforeUpload = new JCheckBox();
    11311131        prefCheckKeysBeforeUpload.setSelected(Config.getPref().getBoolean(PREF_CHECK_KEYS_BEFORE_UPLOAD, true));
    11321132        testPanel.add(prefCheckKeysBeforeUpload, a);
    11331133
    1134         prefCheckComplex = new JCheckBox(tr("Use complex property checker."), Config.getPref().getBoolean(PREF_CHECK_COMPLEX, true));
    1135         prefCheckComplex.setToolTipText(tr("Validate property values and tags using complex rules."));
     1134        prefCheckComplex = new JCheckBox(tr("Use complex property checker"), Config.getPref().getBoolean(PREF_CHECK_COMPLEX, true));
     1135        prefCheckComplex.setToolTipText(tr("Validate property values and tags using complex rules"));
    11361136        testPanel.add(prefCheckComplex, GBC.std().insets(20, 0, 0, 0));
    11371137
    11381138        prefCheckComplexBeforeUpload = new JCheckBox();
     
    11531153
    11541154        handlePrefEnable();
    11551155
    1156         prefCheckValues = new JCheckBox(tr("Check property values."), Config.getPref().getBoolean(PREF_CHECK_VALUES, true));
    1157         prefCheckValues.setToolTipText(tr("Validate that property values are valid checking against presets."));
     1156        prefCheckValues = new JCheckBox(tr("Check property values"), Config.getPref().getBoolean(PREF_CHECK_VALUES, true));
     1157        prefCheckValues.setToolTipText(tr("Validate that property values are valid checking against presets"));
    11581158        testPanel.add(prefCheckValues, GBC.std().insets(20, 0, 0, 0));
    11591159
    11601160        prefCheckValuesBeforeUpload = new JCheckBox();
    11611161        prefCheckValuesBeforeUpload.setSelected(Config.getPref().getBoolean(PREF_CHECK_VALUES_BEFORE_UPLOAD, true));
    11621162        testPanel.add(prefCheckValuesBeforeUpload, a);
    11631163
    1164         prefCheckFixmes = new JCheckBox(tr("Check for fixme."), Config.getPref().getBoolean(PREF_CHECK_FIXMES, true));
    1165         prefCheckFixmes.setToolTipText(tr("Looks for nodes or ways with fixme in any property value."));
     1164        prefCheckFixmes = new JCheckBox(tr("Check for fixme"), Config.getPref().getBoolean(PREF_CHECK_FIXMES, true));
     1165        prefCheckFixmes.setToolTipText(tr("Looks for nodes or ways with fixme in any property value"));
    11661166        testPanel.add(prefCheckFixmes, GBC.std().insets(20, 0, 0, 0));
    11671167
    11681168        prefCheckFixmesBeforeUpload = new JCheckBox();
    11691169        prefCheckFixmesBeforeUpload.setSelected(Config.getPref().getBoolean(PREF_CHECK_FIXMES_BEFORE_UPLOAD, true));
    11701170        testPanel.add(prefCheckFixmesBeforeUpload, a);
    11711171
    1172         prefCheckPresetsTypes = new JCheckBox(tr("Check for presets types."), Config.getPref().getBoolean(PREF_CHECK_PRESETS_TYPES, true));
    1173         prefCheckPresetsTypes.setToolTipText(tr("Validate that objects types are valid checking against presets."));
     1172        prefCheckPresetsTypes = new JCheckBox(tr("Check for presets types"), Config.getPref().getBoolean(PREF_CHECK_PRESETS_TYPES, true));
     1173        prefCheckPresetsTypes.setToolTipText(tr("Validate that objects types are valid checking against presets"));
    11741174        testPanel.add(prefCheckPresetsTypes, GBC.std().insets(20, 0, 0, 0));
    11751175
    11761176        prefCheckPresetsTypesBeforeUpload = new JCheckBox();
  • src/org/openstreetmap/josm/gui/preferences/advanced/AdvancedPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/advanced/AdvancedPreference.java b/src/org/openstreetmap/josm/gui/preferences/advanced/AdvancedPreference.java
    a b  
    153153    };
    154154
    155155    private AdvancedPreference() {
    156         super(/* ICON(preferences/) */ "advanced", tr("Advanced Preferences"), tr("Setting Preference entries directly. Use with caution!"));
     156        super("advanced", tr("Advanced Preferences"), tr("Setting preference entries directly. Use with caution!"));
    157157    }
    158158
    159159    @Override
  • src/org/openstreetmap/josm/gui/preferences/audio/AudioPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/audio/AudioPreference.java b/src/org/openstreetmap/josm/gui/preferences/audio/AudioPreference.java
    a b  
    3636    }
    3737
    3838    private AudioPreference() {
    39         super(/* ICON(preferences/) */ "audio", tr("Audio"), tr("Settings for the audio player and audio markers."));
     39        super("audio", tr("Audio"), tr("Settings for the audio player and audio markers"));
    4040    }
    4141
    42     private final JCheckBox audioMenuVisible = new JCheckBox(tr("Display the Audio menu."));
    43     private final JCheckBox markerButtonLabels = new JCheckBox(tr("Label audio (and image and web) markers."));
    44     private final JCheckBox markerAudioTraceVisible = new JCheckBox(tr("Display live audio trace."));
     42    private final JCheckBox audioMenuVisible = new JCheckBox(tr("Display the Audio menu"));
     43    private final JCheckBox markerButtonLabels = new JCheckBox(tr("Label audio (and image and web) markers"));
     44    private final JCheckBox markerAudioTraceVisible = new JCheckBox(tr("Display live audio trace"));
    4545
    4646    // various methods of making markers on import audio
    47     private final JCheckBox audioMarkersFromExplicitWaypoints = new JCheckBox(tr("Explicit waypoints with valid timestamps."));
    48     private final JCheckBox audioMarkersFromUntimedWaypoints = new JCheckBox(tr("Explicit waypoints with time estimated from track position."));
    49     private final JCheckBox audioMarkersFromNamedTrackpoints = new JCheckBox(tr("Named trackpoints."));
    50     private final JCheckBox audioMarkersFromWavTimestamps = new JCheckBox(tr("Modified times (time stamps) of audio files."));
    51     private final JCheckBox audioMarkersFromStart = new JCheckBox(tr("Start of track (will always do this if no other markers available)."));
     47    private final JCheckBox audioMarkersFromExplicitWaypoints = new JCheckBox(tr("Explicit waypoints with valid timestamps"));
     48    private final JCheckBox audioMarkersFromUntimedWaypoints = new JCheckBox(tr("Explicit waypoints with time estimated from track position"));
     49    private final JCheckBox audioMarkersFromNamedTrackpoints = new JCheckBox(tr("Named trackpoints"));
     50    private final JCheckBox audioMarkersFromWavTimestamps = new JCheckBox(tr("Modified times (time stamps) of audio files"));
     51    private final JCheckBox audioMarkersFromStart = new JCheckBox(tr("Start of track (will always do this if no other markers available)"));
    5252
    5353    private final JosmTextField audioLeadIn = new JosmTextField(8);
    5454    private final JosmTextField audioForwardBackAmount = new JosmTextField(8);
     
    6161
    6262        // audioMenuVisible
    6363        audioMenuVisible.setSelected(!Config.getPref().getBoolean("audio.menuinvisible"));
    64         audioMenuVisible.setToolTipText(tr("Show or hide the audio menu entry on the main menu bar."));
     64        audioMenuVisible.setToolTipText(tr("Show or hide the audio menu entry on the main menu bar"));
    6565        audio.add(audioMenuVisible, GBC.eol().insets(0, 0, 0, 0));
    6666
    6767        // audioTraceVisible
    6868        markerAudioTraceVisible.setSelected(Config.getPref().getBoolean("marker.traceaudio", true));
    6969        markerAudioTraceVisible.setToolTipText(
    70                 tr("Display a moving icon representing the point on the synchronized track where the audio currently playing was recorded."));
     70                tr("Display a moving icon representing the point on the synchronized track where the audio currently playing was recorded"));
    7171        audio.add(markerAudioTraceVisible, GBC.eol().insets(0, 0, 0, 0));
    7272
    7373        // buttonLabels
    7474        markerButtonLabels.setSelected(Config.getPref().getBoolean("marker.buttonlabels", true));
    75         markerButtonLabels.setToolTipText(tr("Put text labels against audio (and image and web) markers as well as their button icons."));
     75        markerButtonLabels.setToolTipText(tr("Put text labels against audio (and image and web) markers as well as their button icons"));
    7676        audio.add(markerButtonLabels, GBC.eol().insets(0, 0, 0, 0));
    7777
    7878        audio.add(new JLabel(tr("When importing audio, make markers from...")), GBC.eol());
    7979
    8080        // audioMarkersFromExplicitWaypoints
    8181        audioMarkersFromExplicitWaypoints.setSelected(Config.getPref().getBoolean("marker.audiofromexplicitwaypoints", true));
    82         audioMarkersFromExplicitWaypoints.setToolTipText(tr("When importing audio, apply it to any waypoints in the GPX layer."));
     82        audioMarkersFromExplicitWaypoints.setToolTipText(tr("When importing audio, apply it to any waypoints in the GPX layer"));
    8383        audio.add(audioMarkersFromExplicitWaypoints, GBC.eol().insets(10, 0, 0, 0));
    8484
    8585        // audioMarkersFromUntimedWaypoints
    8686        audioMarkersFromUntimedWaypoints.setSelected(Config.getPref().getBoolean("marker.audiofromuntimedwaypoints", true));
    87         audioMarkersFromUntimedWaypoints.setToolTipText(tr("When importing audio, apply it to any waypoints in the GPX layer."));
     87        audioMarkersFromUntimedWaypoints.setToolTipText(tr("When importing audio, apply it to any waypoints in the GPX layer"));
    8888        audio.add(audioMarkersFromUntimedWaypoints, GBC.eol().insets(10, 0, 0, 0));
    8989
    9090        // audioMarkersFromNamedTrackpoints
    9191        audioMarkersFromNamedTrackpoints.setSelected(Config.getPref().getBoolean("marker.audiofromnamedtrackpoints", false));
    9292        audioMarkersFromNamedTrackpoints.setToolTipText(
    93                 tr("Automatically create audio markers from trackpoints (rather than explicit waypoints) with names or descriptions."));
     93                tr("Automatically create audio markers from trackpoints (rather than explicit waypoints) with names or descriptions"));
    9494        audio.add(audioMarkersFromNamedTrackpoints, GBC.eol().insets(10, 0, 0, 0));
    9595
    9696        // audioMarkersFromWavTimestamps
    9797        audioMarkersFromWavTimestamps.setSelected(Config.getPref().getBoolean("marker.audiofromwavtimestamps", false));
    9898        audioMarkersFromWavTimestamps.setToolTipText(
    99                 tr("Create audio markers at the position on the track corresponding to the modified time of each audio WAV file imported."));
     99                tr("Create audio markers at the position on the track corresponding to the modified time of each audio WAV file imported"));
    100100        audio.add(audioMarkersFromWavTimestamps, GBC.eol().insets(10, 0, 0, 0));
    101101
    102102        // audioMarkersFromStart
    103103        audioMarkersFromStart.setSelected(Config.getPref().getBoolean("marker.audiofromstart"));
    104104        audioMarkersFromStart.setToolTipText(
    105                 tr("Automatically create audio markers from trackpoints (rather than explicit waypoints) with names or descriptions."));
     105                tr("Automatically create audio markers from trackpoints (rather than explicit waypoints) with names or descriptions"));
    106106        audio.add(audioMarkersFromStart, GBC.eol().insets(10, 0, 0, 0));
    107107
    108108        audioForwardBackAmount.setText(Config.getPref().get("audio.forwardbackamount", "10.0"));
  • src/org/openstreetmap/josm/gui/preferences/display/ColorPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/display/ColorPreference.java b/src/org/openstreetmap/josm/gui/preferences/display/ColorPreference.java
    a b  
    8383    }
    8484
    8585    ColorPreference() {
    86         super(/* ICON(preferences/) */ "color",
    87                 tr("Colors"), tr("Change colors used in program dialogs and in map paint styles."));
     86        super("color", tr("Colors"), tr("Change colors used in program dialogs and in map paint styles"));
    8887    }
    8988
    9089    private ColorTableModel tableModel;
     
    364363            }
    365364        });
    366365        colors.getColumnModel().getColumn(1).setWidth(100);
    367         colors.setToolTipText(tr("Colors used by different objects in JOSM."));
     366        colors.setToolTipText(tr("Colors used by different objects in JOSM"));
    368367        colors.setPreferredScrollableViewportSize(new Dimension(100, 112));
    369368
    370369        colors.getSelectionModel().addListSelectionListener(this);
  • src/org/openstreetmap/josm/gui/preferences/display/DisplayPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/display/DisplayPreference.java b/src/org/openstreetmap/josm/gui/preferences/display/DisplayPreference.java
    a b  
    2626    }
    2727
    2828    private DisplayPreference() {
    29         super(/* ICON(preferences/) */ "display", trc("gui", "Display"),
    30                 tr("Various settings that influence the visual representation of the whole program."), false);
     29        super("display", trc("gui", "Display"),
     30                tr("Various settings that influence the visual representation of the whole program"), false);
    3131    }
    3232
    3333    @Override
  • src/org/openstreetmap/josm/gui/preferences/display/DrawingPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/display/DrawingPreference.java b/src/org/openstreetmap/josm/gui/preferences/display/DrawingPreference.java
    a b  
    4747    public static final BooleanProperty SOURCE_BOUNDS_PROP = new BooleanProperty("draw.data.downloaded_area", true);
    4848
    4949    private final JCheckBox directionHint = new JCheckBox(tr("Draw Direction Arrows"));
    50     private final JCheckBox headArrow = new JCheckBox(tr("Only on the head of a way."));
    51     private final JCheckBox onewayArrow = new JCheckBox(tr("Draw oneway arrows."));
     50    private final JCheckBox headArrow = new JCheckBox(tr("Only on the head of a way"));
     51    private final JCheckBox onewayArrow = new JCheckBox(tr("Draw oneway arrows"));
    5252    private final JCheckBox segmentOrderNumber = new JCheckBox(tr("Draw segment order numbers"));
    5353    private final JCheckBox segmentOrderNumberOnSelectedWay = new JCheckBox(tr("Draw segment order numbers on selected way"));
    5454    private final JCheckBox sourceBounds = new JCheckBox(tr("Draw boundaries of downloaded data"));
     
    6969    private final JCheckBox hideLabelsWhileDragging = new JCheckBox(tr("Hide labels while dragging the map"));
    7070
    7171    DrawingPreference() {
    72         super("layer/osmdata_small", tr("OSM Data"), tr("Settings that control the drawing of OSM data."));
     72        super("layer/osmdata_small", tr("OSM Data"), tr("Settings that control the drawing of OSM data"));
    7373    }
    7474
    7575    @Override
     
    8686            }
    8787            headArrow.setEnabled(directionHint.isSelected());
    8888        });
    89         directionHint.setToolTipText(tr("Draw direction hints for way segments."));
     89        directionHint.setToolTipText(tr("Draw direction hints for way segments"));
    9090        directionHint.setSelected(Config.getPref().getBoolean("draw.segment.direction", false));
    9191
    9292        // only on the head of a way
    93         headArrow.setToolTipText(tr("Only on the head of a way."));
     93        headArrow.setToolTipText(tr("Only on the head of a way"));
    9494        headArrow.setSelected(Config.getPref().getBoolean("draw.segment.head_only", false));
    9595        headArrow.setEnabled(directionHint.isSelected());
    9696
    9797        // draw oneway arrows
    98         onewayArrow.setToolTipText(tr("Draw arrows in the direction of oneways and other directed features."));
     98        onewayArrow.setToolTipText(tr("Draw arrows in the direction of oneways and other directed features"));
    9999        onewayArrow.setSelected(Config.getPref().getBoolean("draw.oneway", true));
    100100
    101101        // segment order number
    102         segmentOrderNumber.setToolTipText(tr("Draw the order numbers of all segments within their way."));
     102        segmentOrderNumber.setToolTipText(tr("Draw the order numbers of all segments within their way"));
    103103        segmentOrderNumber.setSelected(Config.getPref().getBoolean("draw.segment.order_number", false));
    104         segmentOrderNumberOnSelectedWay.setToolTipText(tr("Draw the order numbers of all segments within their way."));
     104        segmentOrderNumberOnSelectedWay.setToolTipText(tr("Draw the order numbers of all segments within their way"));
    105105        segmentOrderNumberOnSelectedWay.setSelected(Config.getPref().getBoolean("draw.segment.order_number.on_selected", false));
    106106
    107107        // downloaded area
    108         sourceBounds.setToolTipText(tr("Draw the boundaries of data loaded from the server."));
     108        sourceBounds.setToolTipText(tr("Draw the boundaries of data loaded from the server"));
    109109        sourceBounds.setSelected(SOURCE_BOUNDS_PROP.get());
    110110
    111111        // virtual nodes
    112         virtualNodes.setToolTipText(tr("Draw virtual nodes in select mode for easy way modification."));
     112        virtualNodes.setToolTipText(tr("Draw virtual nodes in select mode for easy way modification"));
    113113        virtualNodes.setSelected(Config.getPref().getInt("mappaint.node.virtual-size", 8) != 0);
    114114
    115115        // background layers in inactive color
    116         inactive.setToolTipText(tr("Draw the inactive data layers in a different color."));
     116        inactive.setToolTipText(tr("Draw the inactive data layers in a different color"));
    117117        inactive.setSelected(Config.getPref().getBoolean("draw.data.inactive_color", true));
    118118
    119119        // antialiasing
    120         useAntialiasing.setToolTipText(tr("Apply antialiasing to the map view resulting in a smoother appearance."));
     120        useAntialiasing.setToolTipText(tr("Apply antialiasing to the map view resulting in a smoother appearance"));
    121121        useAntialiasing.setSelected(Config.getPref().getBoolean("mappaint.use-antialiasing", true));
    122122
    123123        // wireframe mode antialiasing
    124         useWireframeAntialiasing.setToolTipText(tr("Apply antialiasing to the map view in wireframe mode resulting in a smoother appearance."));
     124        useWireframeAntialiasing.setToolTipText(tr("Apply antialiasing to the map view in wireframe mode resulting in a smoother appearance"));
    125125        useWireframeAntialiasing.setSelected(Config.getPref().getBoolean("mappaint.wireframe.use-antialiasing", false));
    126126
    127127        // highlighting
    128         useHighlighting.setToolTipText(tr("Hightlight target nodes and ways while drawing or selecting"));
     128        useHighlighting.setToolTipText(tr("Highlight target nodes and ways while drawing or selecting"));
    129129        useHighlighting.setSelected(Config.getPref().getBoolean("draw.target-highlight", true));
    130130
    131131        drawHelperLine.setToolTipText(tr("Draw rubber-band helper line"));
    132132        drawHelperLine.setSelected(Config.getPref().getBoolean("draw.helper-line", true));
    133133
    134134        // outlineOnly
    135         outlineOnly.setToolTipText(tr("This option suppresses the filling of areas, overriding anything specified in the selected style."));
     135        outlineOnly.setToolTipText(tr("This option suppresses the filling of areas, overriding anything specified in the selected style"));
    136136        outlineOnly.setSelected(Config.getPref().getBoolean("draw.data.area_outline_only", false));
    137137
    138138        // hideLabelsWhileDragging
    139         hideLabelsWhileDragging.setToolTipText(tr("This option hides the textual labels of OSM objects while dragging the map."));
     139        hideLabelsWhileDragging.setToolTipText(tr("This option hides the textual labels of OSM objects while dragging the map"));
    140140        hideLabelsWhileDragging.setSelected(OsmDataLayer.PROPERTY_HIDE_LABELS_WHILE_DRAGGING.get());
    141141
    142142        // discardable keys
    143         discardableKeys.setToolTipText(tr("Display keys which have been deemed uninteresting to the point that they can be silently removed."));
     143        discardableKeys.setToolTipText(tr("Display keys which have been deemed uninteresting to the point that they can be silently removed"));
    144144        discardableKeys.setSelected(Config.getPref().getBoolean("display.discardable-keys", false));
    145145
    146146        // auto filters
  • src/org/openstreetmap/josm/gui/preferences/display/GPXPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/display/GPXPreference.java b/src/org/openstreetmap/josm/gui/preferences/display/GPXPreference.java
    a b  
    2525    }
    2626
    2727    GPXPreference() {
    28         super("layer/gpx_small", tr("GPS Points"), tr("Settings that control the drawing of GPS tracks."));
     28        super("layer/gpx_small", tr("GPS Points"), tr("Settings that control the drawing of GPS tracks"));
    2929    }
    3030
    3131    private GPXSettingsPanel gpxPanel;
  • src/org/openstreetmap/josm/gui/preferences/display/LanguagePreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/display/LanguagePreference.java b/src/org/openstreetmap/josm/gui/preferences/display/LanguagePreference.java
    a b  
    4848    }
    4949
    5050    LanguagePreference() {
    51         super(/* ICON(preferences/) */ "language", tr("Language"), tr("Change the language of JOSM."));
     51        super("language", tr("Language"), tr("Change the language of JOSM"));
    5252    }
    5353
    5454    /** the combo box with the available locales */
  • src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java b/src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java
    a b  
    7171    }
    7272
    7373    private ImageryPreference() {
    74         super(/* ICON(preferences/) */ "imagery", tr("Imagery"),
    75                 tr("Modify list of imagery layers displayed in the Imagery menu"), false);
     74        super("imagery", tr("Imagery"), tr("Modify list of imagery layers displayed in the Imagery menu"), false);
    7675    }
    7776
    7877    private static void addSettingsSection(final JPanel p, String name, JPanel section) {
     
    220219            buttonPanel.add(delete, GBC.std().insets(0, 5, 0, 0));
    221220            delete.addActionListener(e -> {
    222221                if (list.getSelectedRow() == -1) {
    223                     JOptionPane.showMessageDialog(gui, tr("Please select the row to delete."));
     222                    JOptionPane.showMessageDialog(gui, tr("Please select the row to delete"));
    224223                } else {
    225                     Integer i;
     224                    int i;
    226225                    while ((i = list.getSelectedRow()) != -1) {
    227226                        model.removeRow(i);
    228227                    }
  • src/org/openstreetmap/josm/gui/preferences/map/BackupPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/map/BackupPreference.java b/src/org/openstreetmap/josm/gui/preferences/map/BackupPreference.java
    a b  
    4747    private final JosmTextField backupPerLayer = new JosmTextField(8);
    4848
    4949    BackupPreference() {
    50         super(/* ICON(preferences/) */ "backup", tr("File backup"), tr("Configure whether to create backup files"));
     50        super("backup", tr("File Backup"), tr("Configure whether to create backup files"));
    5151    }
    5252
    5353    @Override
  • src/org/openstreetmap/josm/gui/preferences/map/MapPaintPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/map/MapPaintPreference.java b/src/org/openstreetmap/josm/gui/preferences/map/MapPaintPreference.java
    a b  
    4141    private JCheckBox enableIconDefault;
    4242
    4343    MapPaintPreference() {
    44         super("dialogs/mapstyle", tr("Map Paint Styles"), tr("Map Paint Styles"));
     44        super("dialogs/mapstyle", tr("Map Paint Styles"), tr("Adjustments the rendering style of OSM objects"));
    4545    }
    4646
    4747    private static final List<SourceProvider> styleSourceProviders = new ArrayList<>();
  • src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreference.java b/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreference.java
    a b  
    9191    private boolean pluginPreferencesActivated;
    9292
    9393    private PluginPreference() {
    94         super(/* ICON(preferences/) */ "plugin", tr("Plugins"), tr("Configure available plugins."), false);
     94        super("plugin", tr("Plugins"), tr("Configure available plugins"), false);
    9595    }
    9696
    9797    /**
     
    540540
    541541        PluginConfigurationSitesPanel() {
    542542            super(new GridBagLayout());
    543             add(new JLabel(tr("Add JOSM Plugin description URL.")), GBC.eol());
     543            add(new JLabel(tr("Add JOSM Plugin description URL")), GBC.eol());
    544544            for (String s : Preferences.main().getPluginSites()) {
    545545                model.addElement(s);
    546546            }
  • src/org/openstreetmap/josm/gui/preferences/projection/ProjectionPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/projection/ProjectionPreference.java b/src/org/openstreetmap/josm/gui/preferences/projection/ProjectionPreference.java
    a b  
    105105    public static final ProjectionChoice lambert = new LambertProjectionChoice();
    106106
    107107    /**
    108      * French departements in the Caribbean Sea and Indian Ocean.
     108     * French departments in the Caribbean Sea and Indian Ocean.
    109109     *
    110110     * Using the UTM transvers Mercator projection and specific geodesic settings.
    111111     */
     
    353353     * Constructs a new {@code ProjectionPreference}.
    354354     */
    355355    public ProjectionPreference() {
    356         super(/* ICON(preferences/) */ "map", tr("Map Projection"), tr("Map Projection"));
     356        super("map", tr("Map Projection"), tr("Map projection settings"));
    357357        this.projectionCombo = new JosmComboBox<>(
    358358            projectionChoices.toArray(new ProjectionChoice[0]));
    359359        this.coordinatesCombo = new JosmComboBox<>(
  • src/org/openstreetmap/josm/gui/preferences/remotecontrol/RemoteControlPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/remotecontrol/RemoteControlPreference.java b/src/org/openstreetmap/josm/gui/preferences/remotecontrol/RemoteControlPreference.java
    a b  
    5050    }
    5151
    5252    private RemoteControlPreference() {
    53         super(/* ICON(preferences/) */ "remotecontrol", tr("Remote Control"), tr("Settings for the remote control feature."));
     53        super("remotecontrol", tr("Remote Control"), tr("Settings for the remote control feature"));
    5454        for (PermissionPrefWithDefault p : PermissionPrefWithDefault.getPermissionPrefs()) {
    5555            JCheckBox cb = new JCheckBox(p.preferenceText);
    5656            cb.setSelected(p.isAllowed());
  • src/org/openstreetmap/josm/gui/preferences/server/ProxyPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreference.java b/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreference.java
    a b  
    3636    private ProxyPreferencesPanel pnlProxyPreferences;
    3737
    3838    private ProxyPreference() {
    39         super(/* ICON(preferences/) */ "proxy", tr("Proxy"), tr("Configure whether to use a proxy server"));
     39        super("proxy", tr("Proxy"), tr("Configure whether to use a proxy server"));
    4040    }
    4141
    4242    @Override
  • src/org/openstreetmap/josm/gui/preferences/server/ServerAccessPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/server/ServerAccessPreference.java b/src/org/openstreetmap/josm/gui/preferences/server/ServerAccessPreference.java
    a b  
    4141    private final OverpassServerPanel pnlOverpassPreferences = new OverpassServerPanel();
    4242
    4343    private ServerAccessPreference() {
    44         super(/* ICON(preferences/) */ "connection", tr("OSM Server"), tr("Connection Settings for the OSM server."));
     44        super("connection", tr("OSM Server"), tr("Connection settings for the OSM server"));
    4545    }
    4646
    4747    /**
  • src/org/openstreetmap/josm/gui/preferences/shortcut/ShortcutPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/shortcut/ShortcutPreference.java b/src/org/openstreetmap/josm/gui/preferences/shortcut/ShortcutPreference.java
    a b  
    3131    }
    3232
    3333    private ShortcutPreference() {
    34         super(/* ICON(preferences/) */ "shortcuts", tr("Keyboard Shortcuts"), tr("Changing keyboard shortcuts manually."));
     34        super("shortcuts", tr("Keyboard Shortcuts"), tr("Changing keyboard shortcuts manually"));
    3535    }
    3636
    3737    @Override
  • src/org/openstreetmap/josm/gui/preferences/validator/ValidatorPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/validator/ValidatorPreference.java b/src/org/openstreetmap/josm/gui/preferences/validator/ValidatorPreference.java
    a b  
    2626    }
    2727
    2828    private ValidatorPreference() {
    29         super(/* ICON(preferences/) */ "validator", tr("Data validator"),
    30                 tr("An OSM data validator that checks for common errors made by users and editor programs."), false);
     29        super("validator", tr("Data Validator"),
     30                tr("An OSM data validator that checks for common errors made by users and editor programs"), false);
    3131    }
    3232
    3333    @Override
  • src/org/openstreetmap/josm/gui/preferences/validator/ValidatorTestsPreference.java

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
    diff --git a/src/org/openstreetmap/josm/gui/preferences/validator/ValidatorTestsPreference.java b/src/org/openstreetmap/josm/gui/preferences/validator/ValidatorTestsPreference.java
    a b  
    5959        JPanel testPanel = new VerticallyScrollablePanel(new GridBagLayout());
    6060        testPanel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
    6161
    62         prefUseIgnore = new JCheckBox(tr("Use ignore list."), ValidatorPrefHelper.PREF_USE_IGNORE.get());
    63         prefUseIgnore.setToolTipText(tr("Use the ignore list to suppress warnings."));
     62        prefUseIgnore = new JCheckBox(tr("Use ignore list"), ValidatorPrefHelper.PREF_USE_IGNORE.get());
     63        prefUseIgnore.setToolTipText(tr("Use the ignore list to suppress warnings"));
    6464        testPanel.add(prefUseIgnore, GBC.eol());
    6565
    66         prefUseLayer = new JCheckBox(tr("Use error layer."), ValidatorPrefHelper.PREF_LAYER.get());
    67         prefUseLayer.setToolTipText(tr("Use the error layer to display problematic elements."));
     66        prefUseLayer = new JCheckBox(tr("Use error layer"), ValidatorPrefHelper.PREF_LAYER.get());
     67        prefUseLayer.setToolTipText(tr("Use the error layer to display problematic elements"));
    6868        testPanel.add(prefUseLayer, GBC.eol());
    6969
    70         prefOther = new JCheckBox(tr("Show informational level."), ValidatorPrefHelper.PREF_OTHER.get());
    71         prefOther.setToolTipText(tr("Show the informational tests."));
     70        prefOther = new JCheckBox(tr("Show informational level"), ValidatorPrefHelper.PREF_OTHER.get());
     71        prefOther.setToolTipText(tr("Show the informational tests"));
    7272        testPanel.add(prefOther, GBC.eol());
    7373
    74         prefOtherUpload = new JCheckBox(tr("Show informational level on upload."),
     74        prefOtherUpload = new JCheckBox(tr("Show informational level on upload"),
    7575                ValidatorPrefHelper.PREF_OTHER_UPLOAD.get());
    76         prefOtherUpload.setToolTipText(tr("Show the informational tests in the upload check windows."));
     76        prefOtherUpload.setToolTipText(tr("Show the informational tests in the upload check windows"));
    7777        testPanel.add(prefOtherUpload, GBC.eol());
    7878
    7979        ActionListener otherUploadEnabled = e -> prefOtherUpload.setEnabled(prefOther.isSelected());