From db7f896a2fd3320587ffdb48f1189f85d6d299cd Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 22 Apr 2005 00:16:48 +0000 Subject: [PATCH] Mark strings for localization. http://mosquito.wordpress.org/view.php?id=1272 Props: nbachiyski git-svn-id: http://svn.automattic.com/wordpress/trunk@2570 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/index.php | 2 +- wp-admin/install.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/index.php b/wp-admin/index.php index 8820d8439f..52de37c79f 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -39,7 +39,7 @@ if ( $scheduled = $wpdb->get_results("SELECT ID, post_title, post_date_gmt FROM foreach ($scheduled as $post) { if ($post->post_title == '') $post->post_title = sprintf(__('Post #%s'), $post->ID); - echo "
  • $post->post_title in " . human_time_diff( current_time('timestamp', 1), strtotime($post->post_date_gmt. ' GMT') ) . "
  • "; + echo "
  • " . sprintf(__('%1$s in %2$s'), "$post->post_title", human_time_diff( current_time('timestamp', 1), strtotime($post->post_date_gmt. ' GMT') )) . "
  • "; } ?> diff --git a/wp-admin/install.php b/wp-admin/install.php index ba30c3d157..99c78b64ef 100644 --- a/wp-admin/install.php +++ b/wp-admin/install.php @@ -17,7 +17,7 @@ header( 'Content-Type: text/html; charset=utf-8' ); - WordPress › Installation + <?php _e('WordPress › Installation'); ?>