void UpdateFont()
 {
     TranslationManager.FontMap map = Parser.CurrentLanguageFont;
     if (map != null)
     {
         if (changeFontOnStyle == true)
         {
             Label.font = map.GetFont(fontKey, Label.fontStyle);
         }
         else
         {
             Label.font = map.GetFont(fontKey);
         }
     }
 }