#localization

i18n_utility-rizzen-yazston

The i18n_utility crate of the Internationalisation project

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

#55 in Internationalization (i18n)

Download history 15/week @ 2024-06-20 7/week @ 2024-06-27 8/week @ 2024-07-11 136/week @ 2024-07-18 51/week @ 2024-07-25 141/week @ 2024-08-01 15/week @ 2024-08-08 12/week @ 2024-08-15 8/week @ 2024-08-22 14/week @ 2024-08-29 2/week @ 2024-09-05 21/week @ 2024-09-12 28/week @ 2024-09-19 41/week @ 2024-09-26 9/week @ 2024-10-03

100 downloads per month
Used in 9 crates (8 directly)

BSD-3-Clause

42KB
570 lines

i18n_utility

Rizzen Yazston :icu4x: https://github.com/unicode-org/icu4x :url-unicode: https://home.unicode.org/ :BCP_47_Language_Tag: https://www.rfc-editor.org/rfc/bcp/bcp47.txt

Welcome to the i18n_utility crate of the Internationalisation (i18n) project.

This crate consists of five modules:

  • error: Contains the error enum for the language registry,

  • language: Registry of language tags with ICU4X's LanguageIdentifier or Locale instances,

  • tagged_string: Simple tagged string type,

  • traits: Traits for localisation of structs and enums,

  • types: Simple struct and enum types.

Features

Available features for i18n_utility crate:

  • icu_extended: Use the more detailed ICU information structs, types, and methods.

  • sync: Allow for rust's concurrency capabilities to be used. Use of Arc and Mutex instead Rc and RefCell.

Modules

language: Registry for holding ICU4X LanguageIdentifier or Locale instances.

Registry for holding the validated {BCP_47_Language_Tag}[BCP 47 Language Tag] strings, and optionally holding the ICU4X LanguageIdentifier or Locale (using feature icu_extended) instances.

The purpose of the registry is to reduce the need of parsing language tags repeatedly, by storing the validated language tag against the requested language tag.

The LanguageIdentifier or Locale type can be provided by either the icu_locid crate or the icu meta-crate. These two crates are part of the {icu4x}[ICU4X] project developed by the {url-unicode}[Unicode Consortium].

tagged_string: Tagged string.

The immutable TaggedString type simply associates a language tag ([Rc]<LanguageTag> or [Arc]<LanguageTag>) to a text string (String).

In the context of the i18n project, the identifier tag is expected to be a {BCP_47_Language_Tag}[BCP 47 Language Tag] string.

Acknowledgements

Stefano Angeleri for advice on various design aspects of implementing the library of the Internationalisation project, and also providing the Italian translation of error message strings.

Dependencies

~4MB
~80K SLoC