euv_ui/hook/i18n/type.rs
1/// An entry for `I18n::add_messages` — a `(key, value)`
2/// pair that the caller usually writes as a single
3/// literal array. The tuple form keeps the public API
4/// allocation-free for the common "compile-time literal
5/// list of pairs" case.
6pub type MessageEntry = (&'static str, &'static str);