I18n fixes in Twentyten footer. Props zeo, see #13198

git-svn-id: http://svn.automattic.com/wordpress/trunk@14523 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nbachiyski 2010-05-09 09:29:06 +00:00
parent d78b3c9f92
commit 8c1e6b62e6
1 changed files with 8 additions and 4 deletions

View File

@ -10,7 +10,6 @@
* @since 3.0.0
*/
?>
</div><!-- #main -->
<div id="footer">
@ -19,12 +18,17 @@
<?php get_sidebar( 'footer' ); ?>
<div id="site-info">
<a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
<a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<?php bloginfo( 'name' ); ?>
</a>
</div>
<div id="site-generator">
<?php do_action('twentyten_credits' ); ?>
<a href="http://wordpress.org/" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a>
<?php do_action( 'twentyten_credits' ); ?>
<a href="<?php echo esc_url( __('http://wordpress.org/', 'twentyten') ); ?>"
title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'twentyten'); ?>" rel="generator">
<?php printf( __('Proudly powered by %s.', 'twentyten'), 'WordPress' ); ?>
</a>
</div>
</div><!-- #colophon -->