Description
A localization system designed to improve how software is translated. Designed to be minimalist, modular and composable.
Fluent alternatives and similar packages
Based on the "Text processing" category.
Alternatively, view Fluent alternatives based on common mentions on social networks and blogs.
-
regex
An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs.
SaaSHub - Software Alternatives and Reviews
![SaaSHub Logo SaaSHub Logo](https://cdn-b.libhunt.com/assets/partners/saashub-small-09b040e303cf50000aca670e1c77a15c64fc5c073fbdca2665ec2b8b621efc1a.png)
Do you think we are missing an alternative of Fluent or a related project?
Popular Comparisons
README
Fluent
![Coverage Status](https://coveralls.io/repos/github/projectfluent/fluent-rs/badge.svg?branch=main)
fluent-rs
is a collection of Rust crates implementing Project Fluent.
Packages
The crates perform the following functions:
fluent ![crates.io](https://img.shields.io/crates/v/fluent.svg)
Umbrella crate combining crates that are ready to be used in production.
fluent-syntax ![crates.io](https://img.shields.io/crates/v/fluent_syntax.svg)
Low level Fluent Syntax AST and parser API.
fluent-bundle ![crates.io](https://img.shields.io/crates/v/fluent_bundle.svg)
Implementation of the low-level Fluent Localization System providing localization capabilities for any Rust project.
fluent-fallback ![crates.io](https://img.shields.io/crates/v/fluent_fallback.svg)
Implementation of the high-level Fluent Localization System providing localization capabilities for any Rust project.
fluent-resmgr ![crates.io](https://img.shields.io/crates/v/fluent_resmgr.svg)
Resource Manager for localization resources.
fluent-cli
Collection of command line tools for Fluent.
Running the project
Each fluent-*
directory works with the typical cargo
commands. In addition there are some general cargo-make
commands that can be run. First install cargo-make
via cargo install --force cargo-make
. The commands are documented in [Makefile.toml](Makefile.toml).
Tests
To run all of the tests for the repo run:
cargo make test
For local code coverage reports run:
# Install the tools first if you haven't done so. The llvm tools must be available
# on the path for this to work correctly.
cargo make install-tools
# Then coverage can be run like so:
cargo make coverage