Changeset 4035 in josm
- Timestamp:
- 2011-04-17T23:17:34+02:00 (14 years ago)
- 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 399 399 400 400 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"), 402 402 tr("Suspicious tag/value combinations"), tr("Suspicious tag/value combinations"), 1272, p) ); 403 403 withErrors.put(p, "TC"); -
trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java
r3671 r4035 89 89 */ 90 90 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")), 93 93 KeyEvent.VK_V, Shortcut.GROUP_LAYER, Shortcut.SHIFT_DEFAULT), 150); 94 94 … … 117 117 buttonPanel.add(selectButton); 118 118 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); 120 120 fixButton.setEnabled(false); 121 121 buttonPanel.add(fixButton); 122 122 if (Main.pref.getBoolean(ValidatorPreference.PREF_USE_IGNORE, true)) { 123 123 ignoreButton = new SideButton(marktr("Ignore"), "delete", "Validator", 124 tr("Ignore the selected errorsnext time."), this);124 tr("Ignore the selected issue next time."), this); 125 125 ignoreButton.setEnabled(false); 126 126 buttonPanel.add(ignoreButton);
Note:
See TracChangeset
for help on using the changeset viewer.