Shane F. Carr
Shane F. Carr
Currently GetNotationSubPattern is a self-contained operation: https://tc39.es/ecma402/#sec-getnotationsubpattern However, the notation subpattern can depend on the style. In ICU, this is already the case for currency, and it is likely useful...
Consider making ResolveLocale return the normalized requested locale instead of the available locale
The concept of an "available locale" is not always well defined. For example, DateTimeFormat might have data in more locales for certain numbering systems and calendars than others, or more...
We got the following feature request from a Google Search client: > I'm working on a feature … that answers \[what time will it be in X minutes/hours\]. > >...
In [CreateDateTimeFormat](https://tc39.es/ecma402/#sec-createdatetimeformat), it says: > 45. For each row in [Table 7](https://tc39.es/ecma402/#table-datetimeformat-components), except the header row, in table order, do > a. Let prop be the name given in the...
(I remember discussing this before, but I can't find an issue for it) We should make sure that the lists returned from Intl Enumeration is required by the spec to...
Sequence units are things like "feet and inches", "hours and minutes", etc. I have a [CLDR proposal](https://docs.google.com/document/d/1BSJFap5SnDX3E4AbG6pdK5S0HFHYQzl1d7OVD3HxP1c/edit#) to extend unit identifier syntax to support sequence units with the `+` separator:...
This issue is tracking https://github.com/js-temporal/proposal-temporal-v2/issues/25. Once Temporal lands fully, we should take action on this.
Hi, I'm from the ICU4X team. We're an open source project building i18n components in Rust. I noticed in your README that you support "basic" line layout. If you need...
How can I write a displaydoc impl for the following struct? ```rust #[displaydoc("{kind}: {str_context}")] pub struct DataError { /// Broad category of the error. pub kind: DataErrorKind, /// Additional context,...
Currently the docs suggest doing something like ```rust let content = fs::read(path) .wrap_err_with(|| format!("Failed to read instrs from {}", path.display()))?; ``` This is such a common case that the above...