fluent-rs
fluent-rs copied to clipboard
Rust implementation of Project Fluent
Update (from @gregtatum): This bug is now about about using ICU4X's number formatter to back FluentNumber. ---- It seems that fluent-rs can parse options for numbers, but not use them....
Blocked on https://github.com/projectfluent/fluent/issues/80 ---- As far as I know in Fluent we can't parametrise arguments. In a sense that this code will be impossible to parse. ```fluent skeleton = {$case...
It may be an unusual way of using attributes, but we plan to use them to implement message variation, for example, for NPCs speech in the game. ```fluent npc-speech-adventurous =...
We have a desire at Mozilla to be alerted in debug contexts when arguments are intended to be formatted with a variable, but no values are given. See the following...
Hi, I really admire the fluent design, it is elegant - thank you! I was following the documentation here: https://www.projectfluent.org/fluent/guide/builtins.html And wanted to try out the `DATETIME()` function but I...
Hi! First of all, thank you for all the work put into these crates! I have faced the issue where a formatted pattern cannot outlive its arguments (same issue raised...
Adds functionality for switching between plural types (cardinal and ordinal). Fluent docs include this option in the `NUMBER` built-in function. Since `fluent-rs` doesn't have that yet, I included it in...
It's slightly annoying to have to depend on third-party crates just to be able to interact with fluent-rs itself. So far in my journey of exploring fluent, I have to...
This updates @Michael-F-Bryan's work from #184 to work with the current master branch. It started out as more of a quick and ugly fix, so please let me know if...
Hi, I think it could be interesting to allow using the [elsa::sync::FrozenMap](https://docs.rs/elsa/latest/elsa/sync/struct.FrozenMap.html) for ressource sharing between threads. Let me known what you think.