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:
parent
d78b3c9f92
commit
8c1e6b62e6
|
@ -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 -->
|
||||
|
|
Loading…
Reference in New Issue