You need to add new terms to Yesthe FormBuilder configuration array. Sort of:
public static IFormBuilder<T> CreateCustomForm<T>()
where T : class
{
var form = new FormBuilder<T>();
var yesTerms = form.Configuration.Yes.ToList();
yesTerms.Add("Ya");
form.Configuration.Yes = yesTerms.ToArray();
return form;
}
What you can use, for example:
return CreateCustomForm<MyForm>()
The reason for this may be the following:
Confirmation type to bool. - , . Confirmation RecognizeBool.
Yes/No, ( .
Confirmation , ConfirmStep. ConfirmStep - , , .