Gettext macros Crates.io Docs.rs

A few proc-macros to help you internationalize your Rust apps.

It uses gettext under the hood. The idea is that just by wrapping strings in macros, they are added to a template for translation files (.pot file). Then, the actual translation files (.po) are generated for each language, and you can upload them to Weblate/Crowdin/POedit/whatever to have them translated. And finally, they get transformed into binary translation files (.mo) that you can embed in your app.

How does it works?

There are five main macros:

The advantage of these macros is that they allow you to work with multiple translation domains (for instance, one for each of your workspace's crate), and that they automatically generate a .pot file for these domains.

Example

main.rs

```rust,ignore use gettext_macros::*;

// The translations for this crate are stored in the "myapp" domain. // Translations for all the listed langages will be available. initi18n!("my_app", ar, de, en, fr, it, ja, ru);

// Generate or update .po from .pot, and compile them to .mo compile_i18n!();

fn main() { let catalog = cat();

println!("{}", i18n!(catalog, "Hello, world!"));
let name = "Jane";
println!("{}", i18n!(catalog, "Hello, {}!"; name));
let message_count = 42;
println!("{}", i18n!(catalog, "You have one new message", "You have {0} new messages"; message_count));

}

fn cat() -> gettext::Catalog { // includei18n! embeds translations in your binary. // It gives a Vec<(&'static str, Catalog)> (list of catalogs with their associated language). let catalog = includei18n!()[0] } ```

Order of the macros

The macros should be called in a certain order to work properly. This order doesn't depend on the program flow, but of the Rust parser flow. Rust will execute macros in the same order they are written in your code. For instance:

rust,ignore i_am_expanded_first(); then_i_am_expanded()

Or, for projects with modules:

```rust,ignore // In main.rs

first_macro!();

mod a;

third_macro!(); ```

```rust,ignore // In a.rs

second_macro!(); ```

So, for the macros provided by this crate, the order to follow is:

  1. init_i18n!
  2. i18n! and t!, as many times as you want
  3. compile_i18n!
  4. include_i18n!

Because some of these macros depends on files written by the previous ones to work properly.