Пример #1
0
 protected string Localise(int key)
 {
     if (_localisation != null && _localisationKeys.ContainsKey(key))
     {
         if (_localisationKeys[key] != null)
         {
             return(_localisation.Localise(_localisationKeys[key]));
         }
         else
         {
             return(null);
         }
     }
     else
     {
         return("NO_LOCALISATION_KEY");
     }
 }