private void HandleButtonsExposedProperties()
        {
            /*List<string> keys = currentDialogue.GetAllExposedProperties();
             * foreach(var key in keys)
             * {*/
            string firstPowerTerm  = GetFirstPowerTerm();
            string secondPowerTerm = GetSecondPowerTerm();
            string topViewTerm     = GetTopViewTerm();
            string alignViewTerm   = GetAlignViewTerm();
            string charaSwitchTerm = GetCharaSwitchTerm();
            string pauseTerm       = GetPauseTerm();
            string restartTerm     = GetRestartTerm();
            string slowTimeTerm    = GetSlowTimeTerm();

            //First Power
            currentDialogue.AddExposedProperty("firstpower", LocalizationManager.GetTermTranslation(firstPowerTerm));
            //Second Power
            currentDialogue.AddExposedProperty("secondpower", LocalizationManager.GetTermTranslation(secondPowerTerm));
            //TopView
            currentDialogue.AddExposedProperty("topview", LocalizationManager.GetTermTranslation(topViewTerm));
            //AlignView
            currentDialogue.AddExposedProperty("alignview", LocalizationManager.GetTermTranslation(alignViewTerm));
            //CharaSwitch
            currentDialogue.AddExposedProperty("charaswitch", LocalizationManager.GetTermTranslation(charaSwitchTerm));
            //Pause
            currentDialogue.AddExposedProperty("pause", LocalizationManager.GetTermTranslation(pauseTerm));
            //Restart
            currentDialogue.AddExposedProperty("restart", LocalizationManager.GetTermTranslation(restartTerm));
            //SlowTime
            currentDialogue.AddExposedProperty("slowtime", LocalizationManager.GetTermTranslation(slowTimeTerm));
        }