--- wordpress/wp-content/themes/default/single.php	Thu Jan 27 17:26:58 2005
+++ /usr/local/www/data/wp/wp-content/themes/default/single.php	Sat Jan 29 02:08:46 2005
@@ -10,42 +10,43 @@
 		</div>
 	
 		<div class="post">
-			<h2 id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
+	<h2 id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink(); ?>" rel="bookmark" title="<?php _e('Permanent Link:'); ?> <?php the_title(); ?>"><?php the_title(); ?></a></h2>
 	
 			<div class="entrytext">
-				<?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>'); ?>
+				<?php the_content(__('<p class="serif">Read the rest of this entry &raquo;</p>')); ?>
 	
-				<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
+				<?php link_pages(__('<p><strong>Pages:</strong> ', '</p>', 'number')); ?>
 	
 				<p class="postmetadata alt">
 					<small>
-						This entry was posted
-						<?php /* This is commented, because it requires a little adjusting sometimes.
+					<?php
+						printf(__('This entry was posted %s on %s at %s and is filed under %s. You can follow any responses to this entry through the <a href="%s">RSS 2.0</a> feed.'), '',
+							/* This is commented, because it requires a little adjusting sometimes.
 							You'll need to download this plugin, and follow the instructions:
 							http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
-							/* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?> 
-						on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?>
-						and is filed under <?php the_category(', ') ?>.
-						You can follow any responses to this entry through the <a href="<?php bloginfo_rss('comments_rss2_url'); ?>">RSS 2.0</a>
-						feed. 
-						
-						<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
-							// Both Comments and Pings are open ?>
-							You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(display); ?>">trackback</a> from your own site.
-						
-						<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
-							// Only Pings are Open ?>
-							Responses are currently closed, but you can <a href="<?php trackback_url(display); ?> ">trackback</a> from your own site.
-						
-						<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
-							// Comments are open, Pings are not ?>
-							You can skip to the end and leave a response. Pinging is currently not allowed.
-			
-						<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
-							// Neither Comments, nor Pings are open ?>
-							Both comments and pings are currently closed.			
-						
-						<?php } edit_post_link('Edit this entry.','',''); ?>
+							/* time_since(abs(strtotime($post->post_date) - (60*120))).' ago' */
+							get_the_time('l, F jS, Y'),
+							get_the_time(),
+							the_category(', ', '', false),
+							get_bloginfo_rss('comments_rss2_url'));
+					?>
+					<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Both Comments and Pings are open 
+							printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s">trackback</a> from your own site. '), trackback_url(false));
+					?>
+					<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Only Pings are Open 
+							printf(__('Responses are currently closed, but you can <a href="%s">trackback</a> from your own site.'), trackback_url(false));
+					?>
+					<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Comments are open, Pings are not 
+							_e('You can skip to the end and leave a response. Pinging is currently not allowed.');
+					?>
+					<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Neither Comments, nor Pings are open 
+							_e('Both comments and pings are currently closed.');
+					?>
+					<?php } edit_post_link(__('Edit this entry.'),'',''); ?>
 						
 					</small>
 				</p>
@@ -63,4 +64,4 @@
 	
 	</div>
 
-<?php get_footer(); ?>
\ No newline at end of file
+<?php get_footer(); ?>
