Exemplo n.º 1
0
 public string _get(I18nKey k)
 {
     if (string.IsNullOrEmpty(k.category))
     {
         return(_get(k.key));
     }
     else
     {
         return(_get(k.category, k.key));
     }
 }
Exemplo n.º 2
0
 public static string get(I18nKey key)
 {
     return(getInstance()._get(key));
 }