Expand description
Welcome to the i18n_localiser
crate of the Internationalisation (i18n) project.
This crate consists of five modules:
-
command
: Contains the command registry, -
error
: Contains the error enums for other modules, -
formatter
[Private]: The actual string formatter of the localiser, -
localiser
: Contains the localiser, -
tree
[Private]: Simple tagged string type.
§Features
Available features for i18n_localiser
crate:
-
icu_blob
: Allow for instances ofBlobDataProvider
to be used various ICU4X components that supportsBufferProvider
. An alternative provider when the internal data of ICU4X components are insufficient for a particular use case. -
icu_compiled_data
[default]: Allow for the internal data of the various ICU4X components. -
icu_extended
: Use the more detailed ICU information structs, types, and methods. -
icu_fs
: Allow for instances ofFsDataProvider
to be used various ICU4X components that supportsBufferProvider
. An alternative provider when the internal data of ICU4X components are insufficient for a particular use case. -
logging
: To provide some logging information. -
sync
: Allow for rust’s concurrency capabilities to be used. Use ofArc
andMutex
insteadRc
andRefCell
.
§Modules
§command
: User defined commands registry
This module contains the command registry for user defined functions.
The module also contains two example commands.
§formatter
: Formatter (Private)
The Formatter
is the formatter state created by parsing a pattern string. The Formatter
is used to create
localised strings for the provided placeholder values.
§localiser
: The Localiser
A localiser that connects to a localisation string data store, to obtain strings for the specified language using a string identifier, and formatting the string to replace any placeholders within the string with provided values.
The localiser is capable of caching retrieved strings that are prepared for placeholder replacement, thus can be reused without the need to parse the string for placeholders.
The localiser makes use of all the other component crates that make up the i18n
project. Ideally one only
needs to use the meta crate i18n
, as it includes all the crates including this i18n_localiser
crate.
§Examples
use i18n_lexer::{IcuDataProvider, DataProvider};
use i18n_utility::{PlaceholderValue, LanguageTagRegistry};
use i18n_provider_sqlite3::LocalisationProviderSqlite3;
use i18n_localiser::{Localiser, CommandRegistry};
use std::collections::HashMap;
use std::rc::Rc;
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
let icu_data_provider = Rc::new( IcuDataProvider::try_new( DataProvider::Internal )? );
let language_tag_registry = Rc::new( LanguageTagRegistry::new() );
let lstring_provider = LocalisationProviderSqlite3::try_new(
"./l10n/", &language_tag_registry, false
)?;
let command_registry = Rc::new( CommandRegistry::new() );
let mut message_system = Localiser::try_new(
&icu_data_provider, &language_tag_registry, Box::new( lstring_provider ), &command_registry, true, true, "en-ZA",
)?;
let tag = language_tag_registry.tag("en-ZA").expect("Failed to canonicalise language tag.");
let mut values = HashMap::<String, PlaceholderValue>::new();
values.insert(
"component".to_string(),
PlaceholderValue::String( "i18n_localiser".to_string() )
);
values.insert(
"identifier".to_string(),
PlaceholderValue::String( "string_not_found".to_string() )
);
values.insert(
"language_tag".to_string(),
PlaceholderValue::String( "en-ZA".to_string() )
);
values.insert(
"fallback".to_string(),
PlaceholderValue::String( "true".to_string() )
);
let lstring = message_system.format(
"i18n_localiser",
"string_not_found",
&values,
&tag,
None,
None
)?;
assert_eq!(
lstring.0.as_str(),
"No string was found for the component ‘i18n_localiser’ with identifier ‘string_not_found’ for the \
language tag ‘en-ZA’. Fallback was used: True.",
"Check placeholder values."
);
Ok( () )
}
§tree
: Tree (Private)
A custom tree that is used internally of the formatter. The tree is created by parsing the provided string, then used to create the formatter state, that is used for creating the formatted localised string from provided placeholder values.
See pattern strings.asciidoc
in docs
of i18n_lexer
crate for the pattern formatting specification.