Changeset 5955
- Timestamp:
- 08/28/2007 06:57:55 PM (18 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-footer.php
r5892 r5955 4 4 5 5 $upgrade = apply_filters( 'update_footer', '' ); 6 printf( __( 'Thank you for creating with <a href="%s">WordPress</a> | <a href="%s">Documentation</a> | <a href="%s">Feedback</a> %s' ), 'http://wordpress.org/', 'http://codex.wordpress.org/', 'http://wordpress.org/support/forum/4', $upgrade )6 echo __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>').' | '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>').' '.$upgrade; 7 7 8 8 ?></p> -
trunk/wp-admin/includes/update.php
r5913 r5955 11 11 switch ( $cur->response ) { 12 12 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/' ); 14 14 break; 15 15 16 16 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 ); 18 18 break; 19 19 20 20 21 21 case 'latest' : 22 return sprintf( __( '|Version %s' ), $GLOBALS['wp_version'] );22 return sprintf( '| '.__( 'Version %s' ), $GLOBALS['wp_version'] ); 23 23 break; 24 24 }
Note: See TracChangeset
for help on using the changeset viewer.