This crate is a Cargo sub-command cargo i18n
which can be used to extract and build localization resources for your crate.
You can install this tool using the command: cargo install cargo-i18n
.
The cargo i18n
command reads the configuration file (by default called i18n.toml
) in the root directory of your crate, and then proceeds to extract localization resources from your source files, and build them.
The i18n-embed library has been created to allow you to conveniently embed the localizations in your application or library, and have them selected at runtime.
The i18n-build library contains most of the implementation for this tool. It has been published separately to allow its direct use within project build scripts if required.
For an example usage, including localizing sub-crates as libraries, you can see the source code for this project, which localizes itself. This project was originally created to aid in the localization for the coster (work in progress) self-hosted web application.
Available configuration options for i18n.toml
:
```toml
src_locale = "en-US"
target_locales = ["es", "ru", "cz"]
i18n.toml
then, it will have its localizationsubcrates = ["subcrate1", "subcrate2"]
[gettext]
i18n.toml
of the crateoutput_dir = "i18n"
msgbugsaddress = "example@example.com"
copyright_holder = "You?"
extracttoparent = false
collateextractedsubcrates = false
xtr
tool.xtr = true
xtr
command,msginit
and msgmerge
commands. Byoutput_dir/pot
.pot_dir = "i18n/pot"
msgmerge
and msginit
commands, and where they will be read from with themsgfmt
command. By default this is output_dir/po
.po_dir = "i18n/po"
msgfmt
output_dir/mo
.mo_dir = "i18n/mo" ```
Pull-requests are welcome, but for design changes it is preferred that you create a GitHub first to discuss it before implementation. You can also contribute to the localization of this tool via:
Or you can also use your favourite po
editor directly to help with localizing the files located in i18n/po and i18n-build/i18n/po.
To add a new language, you can make a request via a GitHub issue, or submit a pull request adding the new locale to i18n.toml and generating the associated new po files using cargo i18n
.