fluent
fluent
is a JavaScript implementation of Project Fluent, a localization
framework designed to unleash the expressive power of the natural language.
Installation
fluent
can be used both on the client-side and the server-side. You can
install it from the npm registry or use it as a standalone script (as the
Fluent
global).
npm install fluent
How to use
The FluentBundle
constructor provides the core functionality of formatting
translations from FTL files.
; const bundle = 'en-US'; const errors = bundle; if errorslength // syntax errors are per-message and don't break the whole resource const welcome = bundle; bundle;// → 'Welcome, Anna, to Foo 3000!'
The API reference is available at http://projectfluent.org/fluent.js/fluent.
Compatibility
fluent
requires the following Intl
formatters:
Intl.DateTimeFormat
(standard, well-supported)Intl.NumberFormat
(standard, well-supported)Intl.PluralRules
(standard, new in ECMAScript 2018)
Intl.PluralRules
may already be available in some engines. In most cases,
however, a polyfill will be required. We recommend intl-pluralrules.
;;
For legacy browsers, the compat
build has been transpiled using Babel's env
preset. It requires the regenerator runtime provided by babel-polyfill.
;
Learn more
Find out more about Project Fluent at projectfluent.org, including documentation of the Fluent file format (FTL), links to other packages and implementations, and information about how to get involved.