Skip to content

Commit

Permalink
CLDR-17462 updates per review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 committed May 30, 2024
1 parent 005be9a commit 3a175b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion tools/cldr-apps/js/src/esm/cldrTable.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,10 @@ function getStatusIcon(statusClass) {
return cldrText.get(`status_${statusClass}`);
case "inherited-provisional":
case "inherited-unconfirmed":
return cldrText.get("inherited");
return (
cldrText.get(`status_inherited`) +
getStatusIcon(statusClass.split("-")[1])
);
default:
return "\ufffd";
}
Expand Down
4 changes: 2 additions & 2 deletions tools/cldr-apps/js/src/esm/cldrText.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -472,10 +472,10 @@ const strings = {
report_missing: "Missing",

// for approval status, see VoteResolver.Status
status_approved: "✅",
status_approved: "✅\uFE0F",
status_contributed: "☑️",
status_provisional: "✖️",
status_unconfirmed: "❌",
status_unconfirmed: "❌\uFE0F",
status_missing: "🕳️",
status_inherited: "⬆️",

Expand Down
3 changes: 2 additions & 1 deletion tools/cldr-apps/src/main/webapp/surveytool.css
Original file line number Diff line number Diff line change
Expand Up @@ -1703,7 +1703,7 @@ The the following can work here:
*/

/* Kashmiri and Urdu are typically in Nastaliq. Kashmiri in particular uses a letter that is
/* Kashmiri and Urdu are typically in Nastaliq. Kashmiri in particular uses a letter that is
not rendered correctly in Noto Naskh (see CLDR-16595) */

:lang(ks), :lang(ur) {
Expand Down Expand Up @@ -2378,6 +2378,7 @@ span.pathChunk:after
.statuscell {
text-align: center;
font-weight: bold;
font-variant-emoji: emoji;
}

.voteDiv .winningStatus {
Expand Down

0 comments on commit 3a175b1

Please sign in to comment.