Make WordPress Core

Ticket #55405: 55405.2.diff

File 55405.2.diff, 1.2 KB (added by SergeyBiryukov, 3 years ago)
  • src/wp-includes/class-wp-theme.php

     
    345345                                && ! file_exists( $theme_path . '/index.php' )
    346346                        ) {
    347347                                $error_message = sprintf(
    348                                         /* translators: 1: templates/index.html, 2: index.php, 3: Documentation URL, 4: style.css */
    349                                         __( 'Template is missing. Standalone themes need to have a %1$s or %2$s template file. <a href="%3$s">Child themes</a> need to have a Template header in the %4$s stylesheet.' ),
     348                                        /* translators: 1: templates/index.html, 2: index.php, 3: Documentation URL, 4: Template, 5: style.css */
     349                                        __( 'Template is missing. Standalone themes need to have a %1$s or %2$s template file. <a href="%3$s">Child themes</a> need to have a %4$s header in the %5$s stylesheet.' ),
    350350                                        '<code>templates/index.html</code>',
    351351                                        '<code>index.php</code>',
    352352                                        __( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ),
     353                                        '<code>Template</code>',
    353354                                        '<code>style.css</code>'
    354355                                );
    355356                                $this->errors = new WP_Error( 'theme_no_index', $error_message );