Skip to content

Commit

Permalink
CLDR-16853 remove further raw URLs from checks, handle via subtype map
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 committed Apr 30, 2024
1 parent b87c1af commit 0fa78a5
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,7 @@ private void addFailure(List<CheckStatus> result, Failure failure) {
.setSubtype(Subtype.sameAsEnglish)
.setCheckOnSubmit(false)
.setMessage(
"The value is the same as in English: see <a target='CLDR-ST-DOCS' href='"
+ CLDRURLS.ERRORS_URL
+ "'>Fixing Errors and Warnings</a>.",
new Object[] {}));
"The value is the same as in English.", new Object[] {}));
break;
case same_as_code:
result.add(
Expand All @@ -281,10 +278,7 @@ private void addFailure(List<CheckStatus> result, Failure failure) {
.setSubtype(Subtype.sameAsCode)
.setCheckOnSubmit(false)
.setMessage(
"The value is the same as the 'code': see <a target='CLDR-ST-DOCS' href='"
+ CLDRURLS.ERRORS_URL
+ "'>Fixing Errors and Warnings</a>.",
new Object[] {}));
"The value is the same as the 'code'.", new Object[] {}));
break;
default:
}
Expand Down

0 comments on commit 0fa78a5

Please sign in to comment.