Changeset 4035 in josm


Ignore:
Timestamp:
2011-04-17T23:17:34+02:00 (13 years ago)
Author:
stoecker
Message:

fix validator texts and degrade strange suspicous tag/value message

Location:
trunk/src/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java

    r4023 r4035  
    399399
    400400                if (!ignore) {
    401                     errors.add( new TestError(this, Severity.ERROR, tr("Suspicious tag/value combinations"),
     401                    errors.add( new TestError(this, Severity.OTHER, tr("Suspicious tag/value combinations"),
    402402                            tr("Suspicious tag/value combinations"), tr("Suspicious tag/value combinations"), 1272, p) );
    403403                    withErrors.put(p, "TC");
  • trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java

    r3671 r4035  
    8989     */
    9090    public ValidatorDialog() {
    91         super(tr("Validation errors"), "validator", tr("Open the validation window."),
    92                 Shortcut.registerShortcut("subwindow:validator", tr("Toggle: {0}", tr("Validation errors")),
     91        super(tr("Validation results"), "validator", tr("Open the validation window."),
     92                Shortcut.registerShortcut("subwindow:validator", tr("Toggle: {0}", tr("Validation results")),
    9393                        KeyEvent.VK_V, Shortcut.GROUP_LAYER, Shortcut.SHIFT_DEFAULT), 150);
    9494
     
    117117        buttonPanel.add(selectButton);
    118118        buttonPanel.add(new SideButton(Main.main.validator.validateAction), "refresh");
    119         fixButton = new SideButton(marktr("Fix"), "fix", "Validator", tr("Fix the selected errors."), this);
     119        fixButton = new SideButton(marktr("Fix"), "fix", "Validator", tr("Fix the selected issue."), this);
    120120        fixButton.setEnabled(false);
    121121        buttonPanel.add(fixButton);
    122122        if (Main.pref.getBoolean(ValidatorPreference.PREF_USE_IGNORE, true)) {
    123123            ignoreButton = new SideButton(marktr("Ignore"), "delete", "Validator",
    124                     tr("Ignore the selected errors next time."), this);
     124                    tr("Ignore the selected issue next time."), this);
    125125            ignoreButton.setEnabled(false);
    126126            buttonPanel.add(ignoreButton);
Note: See TracChangeset for help on using the changeset viewer.