Skip to content

Commit

Permalink
CLDR-17812 v46 vxml: Fix TestCheckCLDR/TestPlaceholders, missing plac…
Browse files Browse the repository at this point in the history
…eholder is OK for LOCALE_DEPENDENT
  • Loading branch information
pedberg-icu committed Jul 18, 2024
1 parent 9d5d8a8 commit 6bbd09f
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -424,14 +424,16 @@ public void checkPlaceholders(CLDRFile cldrFileToTest) {
}
} else { // not disallowed
if (!containsMessagePattern) {
errln(
cldrFileToTest.getLocaleID()
+ " Value ("
+ value
+ ") contains placeholder, but placeholder info = «"
+ placeholderStatus
+ \t"
+ path);
if (placeholderStatus != PlaceholderStatus.LOCALE_DEPENDENT) {
errln(
cldrFileToTest.getLocaleID()
+ " Value ("
+ value
+ ") does not contain placeholder, but placeholder info = «"
+ placeholderStatus
+ \t"
+ path);
}
continue;
}
// get the set of placeholders
Expand Down

0 comments on commit 6bbd09f

Please sign in to comment.