🚚 Renombra LangMatch por Locale

This commit is contained in:
Manuel Cillero 2025-12-10 15:18:07 +01:00
parent a46cf35fee
commit caa4cf6096
5 changed files with 51 additions and 51 deletions

View file

@ -14,18 +14,18 @@ use crate::{builder_fn, AutoDefault};
///
/// // Español disponible.
/// assert_eq!(
/// hello.lookup(&LangMatch::resolve("es-ES")),
/// hello.lookup(&Locale::resolve("es-ES")),
/// Some("¡Hola mundo!".to_string())
/// );
///
/// // Japonés no disponible, traduce al idioma de respaldo (`"en-US"`).
/// assert_eq!(
/// hello.lookup(&LangMatch::resolve("ja-JP")),
/// hello.lookup(&Locale::resolve("ja-JP")),
/// Some("Hello world!".to_string())
/// );
///
/// // Uso típico en un atributo:
/// let title = hello.value(&LangMatch::resolve("es-ES"));
/// let title = hello.value(&Locale::resolve("es-ES"));
/// // Ejemplo: html! { a title=(title) { "Link" } }
/// ```
#[derive(AutoDefault, Clone, Debug)]