private UILocalize _speechLabelLocalise;
void Start()
{
if (_speechLabel != null)
_speechLabelLocalise = _speechLabel.GetComponent<UILocalize>();
}
void SetText(string key)
{
_speechLabelLocalise.key = key;
_speechLabel.text = string.Format(Localization.instance.Get("HELLO_STRING"), "Bob");
}