Make WordPress Core

Changeset 8168 for trunk/wp-settings.php


Ignore:
Timestamp:
06/23/2008 03:40:43 PM (17 years ago)
Author:
ryan
Message:

Mark string that cannot be gettexted. Props nbachiyski. fixes #7074

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r8069 r8168  
    9898
    9999if ( version_compare( '4.3', phpversion(), '>' ) ) {
    100     die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.3.' );
     100    die( /*WP_I18N_OLD_PHP*/'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.3.'/*/WP_I18N_OLD_PHP*/ );
    101101}
    102102
     
    105105
    106106if ( !extension_loaded('mysql') && !file_exists(WP_CONTENT_DIR . '/db.php') )
    107     die( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' );
     107    die( /*WP_I18N_OLD_MYSQL*/'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.'/*/WP_I18N_OLD_MYSQL*/ );
    108108
    109109/**
     
    213213
    214214if ( is_wp_error($prefix) )
    215     wp_die('<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.');
     215    wp_die(/*WP_I18N_BAD_PREFIX*/'<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.'/*/WP_I18N_BAD_PREFIX*/);
    216216
    217217if ( file_exists(WP_CONTENT_DIR . '/object-cache.php') )
Note: See TracChangeset for help on using the changeset viewer.