27 releases

new 0.5.0-gamma2 Oct 24, 2024
0.5.0-beta Sep 17, 2024
0.3.3 Feb 22, 2024
0.2.3 Oct 27, 2023

#1523 in Procedural macros

Download history 100/week @ 2024-07-08 175/week @ 2024-07-15 186/week @ 2024-07-22 125/week @ 2024-07-29 89/week @ 2024-08-05 184/week @ 2024-08-12 259/week @ 2024-08-19 139/week @ 2024-08-26 91/week @ 2024-09-02 48/week @ 2024-09-09 784/week @ 2024-09-16 224/week @ 2024-09-23 103/week @ 2024-09-30 129/week @ 2024-10-07 226/week @ 2024-10-14 209/week @ 2024-10-21

679 downloads per month
Used in leptos_i18n

MIT license

330KB
8K SLoC

crates.io

Docs.rs | Book

Leptos i18n

This crate is made to simplify internationalization in a Leptos application, that loads locales at compile time and provides compile time checks for translation keys, interpolation keys and the selected locale.

The main focus is ease of use with leptos, a typical component using this crate will look like this:

use crate::i18n::*;
use leptos::prelude::*;

#[component]
fn Counter() -> impl IntoView {
  let i18n = use_i18n();

  let (counter, set_counter) = signal(0);
  let inc = move |_| set_counter.update(|count| *count += 1);


  view! {
    <button on:click=inc>
      {t!(i18n, click_to_inc)}
    </button>
    <p>
      {t!(i18n, click_count, count = move || counter.get())}
    </p>
  }
}

Getting started

You can add the crate to your project with

cargo add leptos_i18n

Or by adding this line to your Cargo.toml under [dependencies]:

leptos_i18n = "0.5"

Version compatibility with leptos

Leptos Leptos i18n
< v0.4.x not supported
v0.4.x v0.1.x
v0.5.x v0.2.x
v0.6.x v0.3.x / v0.4.x
v0.7.x v0.5.x

How to use

You can look into the Book for documentation, or look for examples on the github repo.

Dependencies

~14MB
~211K SLoC