pub trait Translator { // Required method fn translate(&self, key: &str) -> String; }
Translates a given key into its corresponding string representation.
If the translation key is unknown, return the key as a String
String