8 releases

0.3.1 Jul 21, 2021
0.3.0 Jul 19, 2021
0.2.3 Nov 12, 2020
0.2.2 Feb 14, 2020
0.0.1 Aug 1, 2019

#360 in Internationalization (i18n)

Download history 158/week @ 2023-12-04 160/week @ 2023-12-11 136/week @ 2023-12-18 72/week @ 2023-12-25 134/week @ 2024-01-01 158/week @ 2024-01-08 201/week @ 2024-01-15 209/week @ 2024-01-22 211/week @ 2024-01-29 192/week @ 2024-02-05 179/week @ 2024-02-12 282/week @ 2024-02-19 212/week @ 2024-02-26 227/week @ 2024-03-04 173/week @ 2024-03-11 131/week @ 2024-03-18

766 downloads per month
Used in 2 crates

Apache-2.0/MIT

9KB
107 lines

Fluent

fluent-pseudo is a Rust implementation of the pseudolocalization API for Project Fluent, a localization framework designed to unleash the entire expressive power of natural language translations.

Build and test Coverage Status

Usage

use fluent_bundle::{FluentBundle, FluentResource};
use unic_langid::langid;
use fluent_pseudo::transform;

fn transform_wrapper(s: &str) -> Cow<str> {
    // Not flipped and elongated pseudolocalization.
    transform(s, false, true, false)
}


fn main() {
    let ftl_string = "hello-world = Hello, world!".to_owned();
    let res = FluentResource::try_new(ftl_string)
        .expect("Could not parse an FTL string.");

    let langid_en = langid!("en");
    let mut bundle = FluentBundle::new(vec![langid_en]);

    // Set pseudolocalization
    bundle.set_transform(Some(transform_wrapper));

    bundle.add_resource(&res)
        .expect("Failed to add FTL resources to the bundle.");

    let msg = bundle.get_message("hello-world")
        .expect("Failed to retrieve a message.");
    let val = msg.value.expect("Message has no value.");

    let mut errors = vec![];
    let value = bundle.format_pattern(val, None, &mut errors);

    assert_eq!(&value, "Ħḗḗŀŀǿǿ Ẇǿǿřŀḓ!");
}

Dependencies

~2.2–3MB
~54K SLoC