The locale code or codes to use for all of the resource's messages.
A Fluent resource,
as the string contents of an FTL file,
as a Fluent.Resource,
or in the shape output by fluentToResourceData as data
.
Optional
options: MessageFormatOptions<never, never> & { detectNumberSelection?: boolean }The MessageFormat constructor options to use for all of the resource's messages.
Optional
bidiIsolation?: "default" | "none"The bidi isolation strategy for message formatting, i.e. how expression placeholders with different or unknown directionalities are isolated from the rest of the formatted message.
The default 'default'
strategy isolates all expression placeholders,
except when both the message and the placeholder are known to be left-to-right.
The 'none'
strategy applies no isolation at all.
Optional
dir?: "ltr" | "rtl" | "auto"Explicitly set the message's base direction. If not set, the direction is detected from the primary locale.
Optional
functions?: Record<string, MessageFunction<T, P>>A set of custom functions to make available during message resolution. Extends the default functions.
Optional
localeMatcher?: "best fit" | "lookup"If given multiple locales,
determines which algorithm to use when selecting between them;
the default for Intl
formatters is 'best fit'
.
The locale is resolved separately by each message function handler call.
Optional
detectNumberSelection?: booleanSet false
to disable number selector detection based on keys.
Compile a Fluent resource (i.e. an FTL file) into a Map of MessageFormat instances.
Uses DraftFunctions.currency, DraftFunctions.unit, as well as a custom
fluent:message
function provided by getMessageFunction.