Make WordPress Core


Ignore:
Timestamp:
08/28/2007 06:57:55 PM (18 years ago)
Author:
ryan
Message:

Gettext fixes from nbachiyski. fixes #4835

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/update.php

    r5913 r5955  
    1111    switch ( $cur->response ) {
    1212    case 'development' :
    13         return sprintf( __( '| You are using a development version (%s). Cool! Please <a href="%s">stay updated</a>.' ), $GLOBALS['wp_version'], 'http://wordpress.org/download/svn/' );
     13        return sprintf( '| '.__( 'You are using a development version (%s). Cool! Please <a href="%s">stay updated</a>.' ), $GLOBALS['wp_version'], 'http://wordpress.org/download/svn/' );
    1414    break;
    1515
    1616    case 'upgrade' :
    17         return sprintf( __( '| <strong>Your WordPress %s is out of date. <a href="%s">Please update</a>.</strong>' ), $GLOBALS['wp_version'], $cur->url );
     17        return sprintf( '| <strong>'.__( 'Your WordPress %s is out of date. <a href="%s">Please update</a>.' ).'</strong>', $GLOBALS['wp_version'], $cur->url );
    1818    break;
    1919
    2020
    2121    case 'latest' :
    22         return sprintf( __( '| Version %s' ), $GLOBALS['wp_version'] );
     22        return sprintf( '| '.__( 'Version %s' ), $GLOBALS['wp_version'] );
    2323    break;
    2424    }
Note: See TracChangeset for help on using the changeset viewer.