Make WordPress Core

Ticket #23248: 23248.diff

File 23248.diff, 2.1 KB (added by bradparbs, 12 years ago)

Fixes all text mentions

  • wp-load.php

     
    5454        require_once( ABSPATH . WPINC . '/functions.php' );
    5555
    5656        // Die with an error message
    57         $die  = __( "There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started." ) . '</p>';
     57        $die  = __( "There doesn't seem to be a <code>wp-config.php</code> file. WordPress needs this before we can get started." ) . '</p>';
    5858        $die .= '<p>' . __( "Need more help? <a href='http://codex.wordpress.org/Editing_wp-config.php'>We got it</a>." ) . '</p>';
    5959        $die .= '<p>' . __( "You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." ) . '</p>';
    6060        $die .= '<p><a href="' . $path . '" class="button button-large">' . __( "Create a Configuration File" ) . '</a>';
  • wp-trackback.php

     
    7373        $tb_id = $posts[0]->ID;
    7474
    7575if ( !isset($tb_id) || !intval( $tb_id ) )
    76         trackback_response(1, 'I really need an ID for this to work.');
     76        trackback_response(1, 'WordPress really needs an ID for this to work.');
    7777
    7878if (empty($title) && empty($tb_url) && empty($blog_name)) {
    7979        // If it doesn't look like a trackback at all...
  • wp-admin/setup-config.php

     
    6363wp_magic_quotes();
    6464
    6565if ( ! file_exists( ABSPATH . 'wp-config-sample.php' ) )
    66         wp_die( __( 'Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.' ) );
     66        wp_die( __( 'Sorry, WordPress needs a wp-config-sample.php file to work from. Please re-upload this file fom your WordPress installation.' ) );
    6767
    6868$config_file = file(ABSPATH . 'wp-config-sample.php');
    6969