fluent-rs icon indicating copy to clipboard operation
fluent-rs copied to clipboard

Rust implementation of Project Fluent

Results 84 fluent-rs issues
Sort by recently updated
recently updated
newest added

The CLI crate has been completely blocked/broken for a while. It doesn't have anything essential or even a lot of function, but for folks getting started with Fluent I think...

One of the first things that bothered me about the Fluent project was how confusing it was to figure out what crates to even start with. A major factor in...

documentation

Tries to temporary solve complex translation cases mentioned in: https://github.com/projectfluent/fluent-rs/issues/268 https://github.com/projectfluent/fluent/issues/80 1) Support user implemented custom functions that can access current scope, can work as Message references. In future we...

Setting this doesn't seem to have any effect whatsoever. I see it is set in the example here, but the input value doesn't have enough floating point digits to actually...

I have a custom type `FluentPhpZvalValue` implementing `FluentType` for storing PHP variables. For example, boolean types are stored as a custom type, instead of converting to `FluentValue::String` or `FluentValue::Number`, since...

For js implementation it is possible: [context_test.js#L46](https://github.com/projectfluent/fluent.js/blob/48e2a62ed45ff2a62a231b2e83cfd8b332d27acb/fluent-bundle/test/context_test.js#L46) But for rs implementation it throws error: ```rust let mut bundle = FluentBundle::new_concurrent(vec![langid!("en")]); bundle .add_resource( FluentResource::try_new( "foo = Foo\\ -bar = Bar" .to_owned(),...

bug
crate:fluent-bundle

The [intl_pluralrules](https://crates.io/crates/intl_pluralrules/versions) dependency was pinned to a patch level release in ba16827, but I can't find any justification for it rematining that way. Since then we'ne unpinned alll remaining 3rd...

I use this methods to serialize text into Message/Term/etc in my Fluent Extractor. It would be great to make them public

https://github.com/projectfluent/fluent-rs/blob/f2033ce8340e09000ad9efccd6215b3fa5c23496/fluent-resmgr/src/resource_manager.rs#L174 It seems that if I try to change the path in my program to something like this: ``` . ├── broken │   └── resources │   ├── en-US │   │  ...

bug
crate:fluent-resmgr