Make WordPress Core

Changeset 45447


Ignore:
Timestamp:
05/26/2019 08:43:43 PM (6 years ago)
Author:
SergeyBiryukov
Message:

I18N: Remove PHP function name from translatable string in WP_Recovery_Mode_Email_Service.

Props ramiy.
Fixes #47255.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-recovery-mode-email-service.php

    r45268 r45447  
    6363            }
    6464
    65             return new WP_Error( 'email_failed', __( 'The email could not be sent. Possible reason: your host may have disabled the mail() function.' ) );
     65            return new WP_Error(
     66                'email_failed',
     67                sprintf(
     68                    /* translators: %s: mail() */
     69                    __( 'The email could not be sent. Possible reason: your host may have disabled the %s function.' ),
     70                    'mail()'
     71                )
     72            );
    6673        }
    6774
Note: See TracChangeset for help on using the changeset viewer.