Stanisław Małolepszy
                                            Stanisław Małolepszy
                                        
                                    > This has an unfortunate consequence in that the number of fraction digits specified in the input hardcodes the mfd option, which is different from how Intl.NumberFormat works. Why do...
Ah, I see what you mean, thanks. My current thinking is to approach this with a pragmatic mindset. I'd expect localizers to just write `key = $5,00` if they know...
Do you expect number literals to be used with intl formatters? I'd argue that if a) locale is known and b) the value is known, the right solution is to...
Let's revisit the parameters to `toString` when we work on #383. The parts yielded from `formatToParts` would likely need to be `toString`'ed, which might mean it would be better to...
If we allowed markup in text-only forms of `Localized`, the following would become possible: ```js {"Hello, world!"} ``` In order to achieve it, we might want to modify the return...
`fluent-react` [landed in Firefox Devtools](https://bugzilla.mozilla.org/show_bug.cgi?id=1450071) this week. Due to no support for async iterables, it needed to use the trick I suggested in [`fluent-react-for-gecko`](https://github.com/stasm/fluent-react-for-gecko/blob/64bfbcc6c2c5153e2f38829767c69e012181af73/src/GeckoLocalizationProvider.js#L13-L21). I got curious: what would it...
I opened a WIP PR with a proposed solution to this: #223.
@zbraniecki - Asking for your feedback on this. I implemented a naive approach which keeps the attributes parsed so far and the rewinds the index to the beginning of the...
Yeah, that was my assumption too. I wanted to hear what @zbraniecki thinks of this approach as he is the original author of this code. I'm also not clear if...
Thanks for sharing your thoughts, @gijsk. I agree that this solution might put too much control in the hands of developers and lead to a single message being reused in...