There is a checkbox:

checkbox( [title]='"Text text <тут перенос нужен> (text text)."', [ngModel]='isChecked', ) 

In general, the title this checkbox is processed by this:

 +b('label').checkbox +e('input').input( type="checkbox", [name]="name", [ngModel]='value', [attr.checked]="isChecked", [attr.require]="required", (ngModelChange)='handleCheckboxChange($event)', ) +e('span').text {{ title }} ng-content 

How to make a transfer that will be transferred to the span ?

    0