// Token: 0x0600425C RID: 16988 RVA: 0x000F47E8 File Offset: 0x000F29E8
    public void Start()
    {
        global::dfLanguageCode language = this.currentLanguage;

        if (this.currentLanguage == global::dfLanguageCode.None)
        {
            language = this.SystemLanguageToLanguageCode(Application.systemLanguage);
        }
        this.LoadLanguage(language);
    }
 // Token: 0x0600425D RID: 16989 RVA: 0x000F481C File Offset: 0x000F2A1C
 public void LoadLanguage(global::dfLanguageCode language)
 {
     this.currentLanguage = language;
     this.strings.Clear();
     if (this.dataFile != null)
     {
         this.parseDataFile();
     }
     global::dfControl[] componentsInChildren = base.GetComponentsInChildren <global::dfControl>();
     for (int i = 0; i < componentsInChildren.Length; i++)
     {
         componentsInChildren[i].Localize();
     }
 }