public void LoadLocalizedFile(string filename)
    {
        JSONLoader csvLoader = new JSONLoader();

        csvLoader.LoadJSON();
        localizedQuestion = csvLoader.GetDictionaries(filename);
        isReady           = true;
    }