Ejemplo n.º 1
0
 public static string GetPluralTextForType(string type)
 {
     return(LocalizationDataProvider()
            .GetTextForKey(StringToken.FromKeyString(type + PluralSufix)));
 }
Ejemplo n.º 2
0
 public static StringToken KeyFromType(Type type)
 {
     return(StringToken.FromKeyString(type.Name));
 }
Ejemplo n.º 3
0
 public static string GetTextForType(string name)
 {
     return(LocalizationDataProvider().GetTextForKey(StringToken.FromKeyString(name)));
 }