Results 59 comments of Kart

My understanding so far: - this [repository](https://github.com/unicode-org/cldr-json/blob/a27aff2f92325a1a1623b1780f9a18647f53a53b/cldr-json/cldr-bcp47/bcp47/calendar.json#L60) contains alias data. - I have to interact with `icu-datagen` in some way to include these files into the `locid_transform` crate. - Presumably...

I've obtained the `calendar.json` file that seems to contain JSON data by running the `download-repo-sources` tool. Other bcp47 JSON files can presumably be acquired using the same process. Next steps:...

I'm interested in working on this for GSoC, but I'm not sure of the right place to discuss this proposal. Should it be in this issue, on Github Discussions, or...

Are the attached issues (#275 and #800) considered as part of the scope for the GSoC proposal? (They don't seem to have been completely resolved yet)

Would [[email protected]](mailto:[email protected]) be the right place to discuss GSoC proposals for this idea?

ListFormat functionality seems to exist in ICU4X, but I wasn't able to find any mention of unit formatting in the codebase (only discussion in the linked issue) I'm starting to...

I've found [this CLDR data](https://www.unicode.org/cldr/charts/44/by_type/units.duration.html) for duration units. Here's my understanding after reviewing [the DurationFormat proposal](https://github.com/tc39/proposal-intl-duration-format): - We format duration units together with ListFormat. - The numbers need to be...

This appears to be an issue in `termcolor` library that simplelog uses.

[`termcolor`](https://docs.rs/termcolor/latest/termcolor/) explicitly states that it makes no effort to check whether the stream it's printing to is a TTY or not. It recommends `atty` for the same. `supports_color` is a...