Type Alias mas_i18n::translations::TranslationTree
source · pub type TranslationTree = Tree;
Aliased Type§
struct TranslationTree { /* private fields */ }
Implementations
source§impl Tree
impl Tree
sourcepub fn message(&self, key: &str) -> Option<&Message>
pub fn message(&self, key: &str) -> Option<&Message>
Get a message from the tree by key.
Returns None
if the requested key is not found.
sourcepub fn pluralize(&self, key: &str, category: PluralCategory) -> Option<&Message>
pub fn pluralize(&self, key: &str, category: PluralCategory) -> Option<&Message>
Get a pluralized message from the tree by key and plural category.
If the key doesn’t have plural variants, this will return the message
itself. Returns the “other” category if the requested category is
not found. Returns None
if the requested key is not found.