Make WordPress Core

Ticket #47081: 47081.patch

File 47081.patch, 983 bytes (added by jitendrabanjara1991, 5 years ago)

String is not translatable

  • install.php

     
    1313<html xmlns="http://www.w3.org/1999/xhtml">
    1414<head>
    1515        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    16         <title>Error: PHP is not running</title>
     16        <title><?php _e( 'Error: PHP is not running' ); ?></title>
    1717</head>
    1818<body class="wp-core-ui">
    19         <p id="logo"><a href="https://wordpress.org/">WordPress</a></p>
    20         <h1>Error: PHP is not running</h1>
    21         <p>WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.</p>
     19        <p id="logo"><a href="https://wordpress.org/"><?php _e( 'WordPress' ); ?></a></p>
     20        <h1><?php _e( 'Error: PHP is not running' ); ?></h1>
     21        <p><?php _e( 'WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.' ); ?></p>
    2222</body>
    2323</html>
    2424        <?php