9 releases

new 0.3.2 May 5, 2024
0.3.1 Jul 21, 2021
0.2.3 Nov 12, 2020
0.2.2 Feb 14, 2020
0.0.1 Aug 1, 2019

#300 in Internationalization (i18n)

Download history 220/week @ 2024-01-19 216/week @ 2024-01-26 180/week @ 2024-02-02 189/week @ 2024-02-09 215/week @ 2024-02-16 264/week @ 2024-02-23 201/week @ 2024-03-01 215/week @ 2024-03-08 140/week @ 2024-03-15 185/week @ 2024-03-22 280/week @ 2024-03-29 351/week @ 2024-04-05 394/week @ 2024-04-12 335/week @ 2024-04-19 458/week @ 2024-04-26 682/week @ 2024-05-03

1,908 downloads per month
Used in 3 crates

Apache-2.0 OR 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.

crates.io Build 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.1–3MB
~53K SLoC