7 releases (4 breaking)
0.10.0 | Aug 2, 2024 |
---|---|
0.9.2 | Jul 23, 2024 |
0.9.1 | Mar 24, 2024 |
0.8.0 | Feb 3, 2024 |
0.6.1 | Jul 6, 2023 |
#299 in Internationalization (i18n)
53 downloads per month
Used in iced_af
520KB
9K
SLoC
i18n
Rizzen Yazston
Welcome to the i18n
crate of the Internationalisation (i18n) project.
This convenience meta crate contains selected available crates:
-
i18n_lexer
: A simple lexer to tokenise a string, -
i18n_localiser
: The multilingual localisation system, -
i18n_provider
: Trait for providing language strings, and error struct, -
i18n_provider_sqlite3
: Implementation ofi18n_provider
using Sqlite3 as its data store, -
i18n_utility
: Contains theLanguageTagRegistry``, and the
TaggedString` type.
NOTE: All these crates on crates.io
have the names appended with the suffix -rizzen-yazston
to distinguish them from internationalisation crates created by other authors.
Features
Available features for i18n_icu
crate:
-
icu_blob
: Allow for instances ofBlobDataProvider
to be used various ICU4X components that supports {BufferProvider}BufferProvider
. 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
.
Acknowledgement
Stefano Angeleri for advice on various design aspects of implementing the components of the internationalisation project, and also providing the Italian translation of error message strings.
Usage
For most use cases, just the use of i18n-rizzen-yazston
crate will be sufficient to use the multilingual message system, though the individual crates can be selected individual if the entire i18n
project is not required.
Cargo.toml
[dependencies]
i18n-rizzen-yazston = "0.9.0"
Examples
See the various component crates for usage examples.
Dependencies
~30MB
~548K SLoC