The problem is that you put everything inside the _() function. So you need to move the first ')'
define sa = Character(_('Sasha', callback = name_callback, cb_name = "Sasha"), color="#efe49c")
It should be:
define sa = Character(_('Sasha'), callback = name_callback, cb_name = "Sasha", color="#efe49c")