Index: trunk/data/validator/highway.mapcss
===================================================================
--- trunk/data/validator/highway.mapcss	(revision 6648)
+++ trunk/data/validator/highway.mapcss	(revision 6649)
@@ -54,5 +54,5 @@
 
 way.major_road[foot?][!sidewalk] {
-  throwWarning: tr("{0} used with {1}", tr("major road"), "{0.tag}");
+  throwWarning: tr("major road used with {0}", "{0.tag}");
   suggestAlternative: "sidewalk";
   suggestAlternative: tr("separate footway");
Index: trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 6648)
+++ trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 6649)
@@ -337,7 +337,7 @@
                 final String description = getDescriptionForMatchingSelector(matchingSelector);
                 if (fix != null) {
-                    return new FixableTestError(null, getSeverity(), description, 3000, p, fix);
+                    return new FixableTestError(null, getSeverity(), description, description, matchingSelector.toString(), 3000, p, fix);
                 } else {
-                    return new TestError(null, getSeverity(), description, 3000, p);
+                    return new TestError(null, getSeverity(), description, description, matchingSelector.toString(), 3000, p);
                 }
             } else {
