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