void OnDisable()
 {
     if (_IsChanged)
     {
         if (UnityEditor.EditorUtility.DisplayDialog("Save", "Save changes to translate Dictionary?", "Save", "Don't Save"))
         {
             Save();
         }
     }
     _Instance = null;
 }
 void OnDestroy()
 {
     _Instance = null;
 }