Gettext fixes from nbachiyski. fixes #4835

git-svn-id: https://develop.svn.wordpress.org/trunk@5955 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2007-08-28 18:57:55 +00:00
parent 13ad64bad7
commit 69ae82a3fd
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -10,16 +10,16 @@ function core_update_footer( $msg ) {
switch ( $cur->response ) {
case 'development' :
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/' );
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/' );
break;
case 'upgrade' :
return sprintf( __( '| <strong>Your WordPress %s is out of date. <a href="%s">Please update</a>.</strong>' ), $GLOBALS['wp_version'], $cur->url );
return sprintf( '| <strong>'.__( 'Your WordPress %s is out of date. <a href="%s">Please update</a>.' ).'</strong>', $GLOBALS['wp_version'], $cur->url );
break;
case 'latest' :
return sprintf( __( '| Version %s' ), $GLOBALS['wp_version'] );
return sprintf( '| '.__( 'Version %s' ), $GLOBALS['wp_version'] );
break;
}
}
@@ -112,4 +112,4 @@ function wp_plugin_update_row( $file ) {
}
add_action( 'after_plugin_row', 'wp_plugin_update_row' );
?>
?>