static LazyTranslation Get(this icon msg) { if (_systemLanguage == -1) { InitSystemLanguage(); } return(msg.Get(_systemLanguage)); }
public static string GetDescription(this icon msg) { var lt = msg.Get(); return(lt != null ? lt.details : msg.ToString()); }
public static string GetText(this icon msg) { var lt = msg.Get(); return(lt != null?lt.ToString() : msg.ToString()); }