void OnLocalize()
 {
     if (!string.IsNullOrEmpty(_token) && (object)_atlas != null)
     {
         if ((object)_image == null)
         {
             _image = GetComponent <Image> ();
         }
         _image.sprite = _atlas.Get(Localizer.Get(_token));
     }
 }