localize_it 2.5.1

Simple and fast library for localization
Documentation
1
2
3
4
5
6
7
pub const fn short_or_default(short: &'static str, default: &'static str) -> &'static str {
    if cfg!(feature = "short_names") {
        short
    } else {
        default
    }
}