From c49bbc943f1e46846f1eece6611ae5f4da4f8ff7 Mon Sep 17 00:00:00 2001 From: Ron Rennick Date: Fri, 11 Jun 2010 16:15:25 +0000 Subject: [PATCH] arrange twentyten strings for easier translation, props zeo, fixes #13824 git-svn-id: https://develop.svn.wordpress.org/trunk@15222 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/themes/twentyten/functions.php | 8 ++++---- wp-content/themes/twentyten/loop.php | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wp-content/themes/twentyten/functions.php b/wp-content/themes/twentyten/functions.php index 01764f16e0..83cae40878 100644 --- a/wp-content/themes/twentyten/functions.php +++ b/wp-content/themes/twentyten/functions.php @@ -493,14 +493,14 @@ if ( ! function_exists( 'twentyten_posted_on' ) ) : * @since Twenty Ten 1.0 */ function twentyten_posted_on() { - printf( __( 'Posted on %2$s by %3$s', 'twentyten' ), - 'class="meta-prep meta-prep-author"', - sprintf( ' ', + printf( __( 'Posted on %2$s by %3$s', 'twentyten' ), + 'meta-prep meta-prep-author', + sprintf( '', get_permalink(), esc_attr( get_the_time() ), get_the_date() ), - sprintf( ' %3$s', + sprintf( '%3$s', get_author_posts_url( get_the_author_meta( 'ID' ) ), sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ), get_the_author() diff --git a/wp-content/themes/twentyten/loop.php b/wp-content/themes/twentyten/loop.php index 7bd2a660f8..31645eecc2 100644 --- a/wp-content/themes/twentyten/loop.php +++ b/wp-content/themes/twentyten/loop.php @@ -142,7 +142,7 @@
- ' . get_the_category_list( ', ' ) ); ?> + Posted in %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> | @@ -151,7 +151,7 @@ if ( $tags_list ): ?> - ' . $tags_list ); ?> + Tagged %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> |