public string _get(I18nKey k) { if (string.IsNullOrEmpty(k.category)) { return(_get(k.key)); } else { return(_get(k.category, k.key)); } }
public static string get(I18nKey key) { return(getInstance()._get(key)); }