#locale #posix #localization #country-code

locale-codes

locale-related codes/identifiers and any standards-based information concerning them

2 unstable releases

0.3.0 Aug 26, 2019
0.2.0 Aug 26, 2019

#288 in Internationalization (i18n)

Download history 7/week @ 2023-12-11 15/week @ 2023-12-18 6/week @ 2023-12-25 24/week @ 2024-01-08 20/week @ 2024-01-15 24/week @ 2024-01-29 13/week @ 2024-02-05 17/week @ 2024-02-12 24/week @ 2024-02-19 52/week @ 2024-02-26 168/week @ 2024-03-04 29/week @ 2024-03-11 31/week @ 2024-03-18 33/week @ 2024-03-25

265 downloads per month
Used in 5 crates (3 directly)

MIT license

285KB
874 lines

Contains (MSI installer, 96KB) src-data/iso-4217/list_one.xls

Crate locale-codes

travis.ci crates.io docs.rs Minimum Rust Version mit License GitHub stars

This crate provides locale-related codes/identifiers and any standards-based information concerning them. For example, ISO-396 language identifiers, or ISO-3166 country identifiers.

Example

use locale_codes::codes::{country, currency, region};

let mexico = country::lookup_country("MEX").unwrap();
println!("{:?}", mexico);

let mexico_region = country::lookup_region(mexico.country_code).unwrap();
println!("{:?}", mexico_region);

let currencies = currency::currencies_for_country_name(mexico_region.name.as_str());
println!("{:?}", currencies);

Pre-Build Process

The following describe two code generation steps that are executed outside the normal build process as the output is stored in Git and versioned based on external factors.

JSON Data Files

The script create-data-modules on the other hand is used to process files downloaded, or scraped, from standards web sites to create data used by the library. This data is generated as JSON files in the src/codes/data folder and read as a part of the build for codes modules using the Rust include! macro.

Currently data is generated for the following standards:

  • ISO 639 Codes for the representation of names of languages; Parts 1-4, 2-character and 3-character codes supported.
  • ISO 3166 Codes for the representation of names of countries and their subdivisions; Part 1, 2-character codes, only.
  • ISO 4217 Codes for the representation of currencies; alphabetic and numeric codes supported.
  • ISO 15924 Codes for the representation of names of scripts; alphabetic and numeric codes supported.

History

  • 0.3.0 - collapsed module hierarchy.
  • 0.2.0 - extracted from simple-locale.

TODO

  • Determine naming convention between the names in the codes and settings crates.
    • Expect that the names in code modules will be changed to reflect those in the settings.

Dependencies

~2.8–4.5MB
~87K SLoC