How to bind a language select?

Hi how can I bind a field on a ScriptableObject e.g.

[CreateProperty]
public string Locale { 
    get => _settingsService.Locale;
    set => _settingsService.SetLocale(value);
}

to a DropdownField in UI Builder? It seems like DropdownField’s current value is int index from the list of choices.