Index: trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 6547)
+++ trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 6548)
@@ -255,5 +255,5 @@
                 cmds.add(new ChangePropertyKeyCommand(p, oldKey, newKey));
             }
-            return new SequenceCommand(tr("Fix of {0}", getDescription()), cmds);
+            return new SequenceCommand(tr("Fix of {0}", getDescriptionForMatchingSelector(matchingSelector)), cmds);
         }
 
@@ -271,4 +271,5 @@
          *
          * @return a description (possibly with alternative suggestions)
+         * @see {@link #getDescriptionForMatchingSelector(Selector)}
          */
         String getDescription() {
@@ -281,6 +282,21 @@
         }
 
+        /**
+         * Constructs a (localized) description for this deprecation check
+         * where any placeholders are replaced by values of the matched selector.
+         *
+         * @return a description (possibly with alternative suggestions)
+         */
+        String getDescriptionForMatchingSelector(Selector matchingSelector) {
+            return insertArguments(matchingSelector, getDescription());
+        }
+
         Severity getSeverity() {
             return errors.values().iterator().next();
+        }
+
+        @Override
+        public String toString() {
+            return getDescription();
         }
 
@@ -295,5 +311,5 @@
             if (matchingSelector != null) {
                 final Command fix = fixPrimitive(p);
-                final String description = TagCheck.insertArguments(matchingSelector, getDescription());
+                final String description = getDescriptionForMatchingSelector(matchingSelector);
                 if (fix != null) {
                     return new FixableTestError(null, getSeverity(), description, 3000, p, fix);
@@ -363,4 +379,8 @@
         addMapCSS("religion.mapcss");
         addMapCSS("relation.mapcss");
+        addMapCSS("combinations.mapcss");
+        addMapCSS("unnecessary.mapcss");
+        addMapCSS("wikipedia.mapcss");
+        addMapCSS("power.mapcss");
     }
 }
