Make WordPress Core

Changeset 24207 for trunk/wp-login.php


Ignore:
Timestamp:
05/08/2013 09:27:31 PM (11 years ago)
Author:
SergeyBiryukov
Message:

Use ellipsis instead of three dots. props tjsingleton, jordie23, wojtek.szkutnik, DrewAPicture, SergeyBiryukov. see #8714.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-login.php

    r24179 r24207  
    266266
    267267    if ( $message && !wp_mail($user_email, $title, $message) )
    268         wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function...') );
     268        wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') );
    269269
    270270    return true;
     
    356356    $user_id = wp_create_user( $sanitized_user_login, $user_pass, $user_email );
    357357    if ( ! $user_id ) {
    358         $errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href="mailto:%s">webmaster</a> !' ), get_option( 'admin_email' ) ) );
     358        $errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn&#8217;t register you&hellip; please contact the <a href="mailto:%s">webmaster</a> !' ), get_option( 'admin_email' ) ) );
    359359        return $errors;
    360360    }
Note: See TracChangeset for help on using the changeset viewer.