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

git-svn-id: https://develop.svn.wordpress.org/trunk@14523 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Nikolay Bachiyski 2010-05-09 09:29:06 +00:00
parent e69e6856e8
commit 10cedbb8b6
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 -->