fluent-templates: A high level Fluent & Fluent Template API.

CI Status Current Version License: MIT/Apache-2.0

fluent-templates provides a high level API for adding fluent to your Rust project, and provides optional integrations with templating languages.

Loaders

The "loader" APIs read a directory and will load all fluent resources in each subdirectory that is a valid [Unicode Language Identifier]. You can also specify shared fluent resources that are used across all localisations.

Example Layout

locales ├── core.ftl ├── en-US │   └── main.ftl ├── fr │   └── main.ftl ├── zh-CN │   └── main.ftl └── zh-TW └── main.ftl

Example

The easiest way to use fluent-templates is to use the [static_loader!] macro:

```rust fluenttemplates::staticloader!(create_loader, "./locales/", "en-US");

fn main() { let loader = create_loader();

assert_eq!("Hello World!", loader.lookup_single_language(&unic_langid::langid!("en-US"), "welcome-text", None).unwrap());

} ```

Tera

```rust

#[cfg(feature = "handlebars")] {

use tera::Tera;

fluenttemplates::staticloader!(create_loader, "./locales/", "en-US");

fn init(tera: &mut Tera) { let loader = createloader(); let helper = fluenttemplates::FluentHelper::new(loader); tera.register_function("fluent", helper); }

fn renderpage(tera: &mut Tera, ctx: &tera::Context) -> String { tera.renderstr(r#"{{ fluent(key="foo-bar", lang="en") }} baz"#, ctx).unwrap() }

}

```

Handlebars

```rust

#[cfg(feature = "handlebars")] {

use handlebars::Handlebars;

fluenttemplates::staticloader!(create_loader, "./locales/", "en-US");

fn init(handlebars: &mut Handlebars) { let loader = createloader(); let helper = fluenttemplates::FluentHelper::new(loader); handlebars.register_helper("fluent", Box::new(helper)); }

fn renderpage(handlebars: &Handlebars) -> String { let data = serdejson::json!({"lang": "zh-CN"}); handlebars.render_template("{{fluent \"foo-bar\"}} baz", &data).unwrap() }

}

```

You should have a locales/ folder somewhere with one folder per language code, containing all of your FTL files. See the [static_loader!] macro for more options.

Make sure the [handlebars::Context] has a top-level "lang" field when rendering.

Handlebars helper syntax.

The main helper provided is the {{fluent}} helper. If you have the following Fluent file:

fluent foo-bar = "foo bar" placeholder = this has a placeholder { $variable }

You can include the strings in your template with

`hbs {{fluent "foo-bar"}} <!-- will render "foo bar" --> {{fluent "placeholder" variable="baz"}} <!-- will render "this has a placeholder baz" -->

You may also use the {{fluentparam}} helper to specify [variables], especially if you need them to be multiline, like so:

hbs {{#fluent "placeholder"}} {{#fluentparam "variable"}} first line second line {{/fluentparam}} {{/fluent}}

Multiple {{fluentparam}}s may be specified

Features/Template Engines

Basic handlebars example

``rust //! Requires--features handlebars`. use fluenttemplates::*; use handlebars::*; use serdejson::*;

staticloader!(createloader, "./locales/", "en-US");

fn init(handlebars: &mut Handlebars) { let loader = createloader(); let helper = FluentHelper::new(loader); handlebars.registerhelper("fluent", Box::new(helper)); }

fn renderpage(handlebars: &Handlebars) -> String { let data = json!({"lang": "zh-CN"}); handlebars.rendertemplate("{{fluent \"foo-bar\"}} baz", &data).unwrap() } ```