diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckWidths.java b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckWidths.java index 01371c40a9e..b753bd77c9e 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckWidths.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckWidths.java @@ -117,7 +117,8 @@ public Limit( this.subtype = Subtype.valueTooWide; break; case SET_ELEMENTS: - this.message = "Expected no more than {0} items(s), but was {1}."; + this.message = + "There cannot be more than {3} item(s), and it is recommended to not have more than {0} item(s). Found {1} item(s)."; this.subtype = Subtype.tooManyValues; break; default: @@ -220,7 +221,12 @@ boolean hasProblem( .setCause(cause) .setMainType(errorType) .setSubtype(subtype) - .setMessage(message, warningReference, valueMeasure, percent)); + .setMessage( + message, + warningReference, + valueMeasure, + percent, + errorReference)); return true; } }