Make WordPress Core

Ticket #54658: 54658.diff

File 54658.diff, 4.7 KB (added by SergeyBiryukov, 3 years ago)
  • src/wp-includes/functions.php

     
    53085308                                trigger_error(
    53095309                                        sprintf(
    53105310                                                /* translators: 1: PHP function name, 2: Version number, 3: Alternative function name. */
    5311                                                 __( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ),
     5311                                                _x( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.', 'function' ),
    53125312                                                $function,
    53135313                                                $version,
    53145314                                                $replacement
     
    53195319                                trigger_error(
    53205320                                        sprintf(
    53215321                                                /* translators: 1: PHP function name, 2: Version number. */
    5322                                                 __( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.' ),
     5322                                                _x( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.', 'function' ),
    53235323                                                $function,
    53245324                                                $version
    53255325                                        ),
     
    54005400                                trigger_error(
    54015401                                        sprintf(
    54025402                                                /* translators: 1: PHP class name, 2: PHP parent class name, 3: Version number, 4: __construct() method. */
    5403                                                 __( 'The called constructor method for %1$s in %2$s is <strong>deprecated</strong> since version %3$s! Use %4$s instead.' ),
     5403                                                _x( 'The called constructor method for %1$s in %2$s is <strong>deprecated</strong> since version %3$s! Use %4$s instead.', 'class' ),
    54045404                                                $class,
    54055405                                                $parent_class,
    54065406                                                $version,
     
    54125412                                trigger_error(
    54135413                                        sprintf(
    54145414                                                /* translators: 1: PHP class name, 2: Version number, 3: __construct() method. */
    5415                                                 __( 'The called constructor method for %1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ),
     5415                                                _x( 'The called constructor method for %1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.', 'class' ),
    54165416                                                $class,
    54175417                                                $version,
    54185418                                                '<code>__construct()</code>'
     
    54985498                                trigger_error(
    54995499                                        sprintf(
    55005500                                                /* translators: 1: PHP file name, 2: Version number, 3: Alternative file name. */
    5501                                                 __( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ),
     5501                                                _x( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.', 'file' ),
    55025502                                                $file,
    55035503                                                $version,
    55045504                                                $replacement
     
    55095509                                trigger_error(
    55105510                                        sprintf(
    55115511                                                /* translators: 1: PHP file name, 2: Version number. */
    5512                                                 __( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.' ),
     5512                                                _x( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.', 'file' ),
    55135513                                                $file,
    55145514                                                $version
    55155515                                        ) . $message,
     
    55925592                                trigger_error(
    55935593                                        sprintf(
    55945594                                                /* translators: 1: PHP function name, 2: Version number, 3: Optional message regarding the change. */
    5595                                                 __( '%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s! %3$s' ),
     5595                                                _x( '%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s! %3$s', 'function' ),
    55965596                                                $function,
    55975597                                                $version,
    55985598                                                $message
     
    56035603                                trigger_error(
    56045604                                        sprintf(
    56055605                                                /* translators: 1: PHP function name, 2: Version number. */
    5606                                                 __( '%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s with no alternative available.' ),
     5606                                                _x( '%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s with no alternative available.', 'function' ),
    56075607                                                $function,
    56085608                                                $version
    56095609                                        ),
     
    56835683                        trigger_error(
    56845684                                sprintf(
    56855685                                        /* translators: 1: WordPress hook name, 2: Version number, 3: Alternative hook name. */
    5686                                         __( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ),
     5686                                        _x( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.', 'hook' ),
    56875687                                        $hook,
    56885688                                        $version,
    56895689                                        $replacement
     
    56945694                        trigger_error(
    56955695                                sprintf(
    56965696                                        /* translators: 1: WordPress hook name, 2: Version number. */
    5697                                         __( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.' ),
     5697                                        _x( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.', 'hook' ),
    56985698                                        $hook,
    56995699                                        $version
    57005700                                ) . $message,
     
    57605760                        trigger_error(
    57615761                                sprintf(
    57625762                                        /* translators: Developer debugging message. 1: PHP function name, 2: Explanatory message, 3: WordPress version number. */
    5763                                         __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ),
     5763                                        _x( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', 'function' ),
    57645764                                        $function,
    57655765                                        $message,
    57665766                                        $version