if ( text === '' ) {
                errors.push( mw.message( 'mwe-upwiz-error-question-blank' ) );
            } else if ( text.length < minLength ) {
                errors.push( mw.message( 'mwe-upwiz-error-too-short', minLength ) );
            } else if ( text.length > maxLength ) {