//! This module contains the localization methods, that handle runtime based adaption of involved OrbTk entities.
modron_localization;pubuseself::ron_localization::*;pubtraitLocalization{/// Gets the current language by language key e.g. `en_US`,
/// `de_DE` or `fr_FR`.
fnlanguage(&self)->&String;/// Sets the current language identified by its language key (e.g. `en_US`, `de_DE`).
fnset_language(&mutself, key:&str);/// Gets the translated text for the given key. If there is no
/// given translation, the `key` will be returned as the result.
fntext(&self, key: String)-> String;}