Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLDR-17812 v46 vxml: Add {0} for de speed-light-speed one, fix error wording in TestCheckCLDR/TestPlaceholders #3887

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions common/main/de.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10677,10 +10677,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
<unit type="speed-light-speed">
<gender>feminine</gender>
<displayName>Lichtgeschwindigkeit</displayName>
<unitPattern count="one">Lichtgeschwindigkeit</unitPattern>
<unitPattern count="one" case="accusative">Lichtgeschwindigkeit</unitPattern>
<unitPattern count="one" case="dative">Lichtgeschwindigkeit</unitPattern>
<unitPattern count="one" case="genitive">Lichtgeschwindigkeit</unitPattern>
<unitPattern count="one">{0} Lichtgeschwindigkeit</unitPattern>
<unitPattern count="one" case="accusative">{0} Lichtgeschwindigkeit</unitPattern>
<unitPattern count="one" case="dative">{0} Lichtgeschwindigkeit</unitPattern>
<unitPattern count="one" case="genitive">{0} Lichtgeschwindigkeit</unitPattern>
<unitPattern count="other">{0}-fache Lichtgeschwindigkeit</unitPattern>
<unitPattern count="other" case="accusative">{0}-fache Lichtgeschwindigkeit</unitPattern>
<unitPattern count="other" case="dative">{0}-facher Lichtgeschwindigkeit</unitPattern>
Expand Down Expand Up @@ -11781,7 +11781,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
</unit>
<unit type="speed-light-speed">
<displayName>Lichtgeschw.</displayName>
<unitPattern count="one">Lichtgeschw.</unitPattern>
<unitPattern count="one">{0} Lichtgeschw.</unitPattern>
<unitPattern count="other">{0}-fache Lichtg.</unitPattern>
</unit>
<unit type="concentr-portion-per-1e9">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,11 +424,13 @@ public void checkPlaceholders(CLDRFile cldrFileToTest) {
}
} else { // not disallowed
if (!containsMessagePattern) {
// The following error seems wrong if placeholderStatus is LOCALE_DEPENDENT
// in which case some entries might not have placeholders; see CLDR-17820
errln(
cldrFileToTest.getLocaleID()
+ " Value ("
+ value
+ ") contains placeholder, but placeholder info = «"
+ ") does not contain placeholder, but placeholder info = «"
+ placeholderStatus
+ "»\t"
+ path);
Expand Down
Loading