Index: 404.php
===================================================================
--- 404.php	(revision 5170)
+++ 404.php	(working copy)
@@ -2,7 +2,7 @@
 
 	<div id="content" class="narrowcolumn">
 
-		<h2 class="center">Error 404 - Not Found</h2>
+		<h2 class="center"><?php _e('Error 404 - Not Found', 'kubrick'); ?></h2>
 
 	</div>
 
Index: archive.php
===================================================================
--- archive.php	(revision 5170)
+++ archive.php	(working copy)
@@ -2,59 +2,65 @@
 
 	<div id="content" class="narrowcolumn">
 <?php is_tag(); ?>
-		<?php if (have_posts()) : ?>
 
-		 <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
-<?php /* If this is a category archive */ if (is_category()) { ?>
-		<h2 class="pagetitle">Archive for the &#8216;<?php single_cat_title(); ?>&#8217; Category</h2>
-<?php } elseif( is_tag() ) { ?>
-<h2 class="pagetitle">Archive for the &#8216;<?php single_cat_title(); ?>&#8217; Tag</h2>
- 	  <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
-		<h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
+<?php if (have_posts()) : ?>
+	<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
 
-	 <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
-		<h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
+	<?php /* If this is a category archive */ if (is_category()) { ?>
+		<h2 class="pagetitle"><?php printf(__("Archive for the &#39;%s&#39; category", 'kubrick'), single_cat_title('', false)); ?></h2>
 
-		<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
-		<h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
+	<?php } elseif( is_tag() ) { ?>
+		<h2 class="pagetitle"><?php printf(__("Archive for the &#39;%s&#39; tag", 'kubrick'), single_cat_title()); ?></h2>
 
-	  <?php /* If this is an author archive */ } elseif (is_author()) { ?>
-		<h2 class="pagetitle">Author Archive</h2>
+ 	<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
+		<h2 class="pagetitle"><?php printf(__("Archive for the day %s", 'kubrick'), get_the_time(__('F jS, Y', 'kubrick'))); ?></h2>
 
-		<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
-		<h2 class="pagetitle">Blog Archives</h2>
+	<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
+		<h2 class="pagetitle"><?php printf(__("Archive for the month %s", 'kubrick'), get_the_time(__('F, Y', 'kubrick'))); ?></h2>
 
-		<?php } ?>
+	<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
+		<h2 class="pagetitle"><?php printf(__("Archive for the year %s", 'kubrick'), get_the_time(__('Y', 'kubrick'))); ?></h2>
 
+	<?php /* If this is a search */ } elseif (is_search()) { ?>
+		<h2 class="pagetitle"><?php _e("Search Results", 'kubrick'); ?></h2>
 
+	<?php /* If this is an author archive */ } elseif (is_author()) { ?>
+		<h2 class="pagetitle"><?php _e("Author Archive", 'kubrick'); ?></h2>
+
+	<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
+		<h2 class="pagetitle"><?php _e("Blog Archives", 'kubrick'); ?></h2>
+
+	<?php } ?>
+
+
 		<div class="navigation">
-			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
-			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
+			<div class="alignleft"><?php next_posts_link(__('&laquo; Previous Entries', 'kubrick')) ?></div>
+			<div class="alignright"><?php previous_posts_link(__('Next Entries &raquo;', 'kubrick')) ?></div>
 		</div>
 
 		<?php while (have_posts()) : the_post(); ?>
 		<div class="post">
-				<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
-				<small><?php the_time('l, F jS, Y') ?></small>
+				<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title('','',false)); ?>"><?php the_title(); ?></a></h3>
+				<small><?php the_time(__('l, F jS, Y', 'kubrick')) ?></small>
 
 				<div class="entry">
 					<?php the_content() ?>
 				</div>
 
-				<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
+				<p class="postmetadata"><?php the_tags(__('Tags: ', 'kubrick'), ', ', '<br />'); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?>  <?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick')); ?></p> 
 
 			</div>
 
 		<?php endwhile; ?>
 
 		<div class="navigation">
-			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
-			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
+			<div class="alignleft"><?php next_posts_link(__('&laquo; Previous Entries', 'kubrick')) ?></div>
+			<div class="alignright"><?php previous_posts_link(__('Next Entries &raquo;', 'kubrick')) ?></div>
 		</div>
 
 	<?php else : ?>
 
-		<h2 class="center">Not Found</h2>
+		<h2 class="center"><?php _e('Not Found', 'kubrick'); ?></h2>
 		<?php include (TEMPLATEPATH . '/searchform.php'); ?>
 
 	<?php endif; ?>
@@ -63,4 +69,4 @@
 
 <?php get_sidebar(); ?>
 
-<?php get_footer(); ?>
+<?php get_footer(); ?>
\ No newline at end of file
Index: archives.php
===================================================================
--- archives.php	(revision 5170)
+++ archives.php	(working copy)
@@ -8,17 +8,17 @@
 
 <div id="content" class="widecolumn">
 
-<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+	<?php include (TEMPLATEPATH . '/searchform.php'); ?>
 
-<h2>Archives by Month:</h2>
-	<ul>
-		<?php wp_get_archives('type=monthly'); ?>
-	</ul>
+	<h2><?php _e("Archives by Month:", 'kubrick'); ?></h2>
+	  <ul>
+	    <?php wp_get_archives('type=monthly'); ?>
+	  </ul>
 
-<h2>Archives by Subject:</h2>
-	<ul>
-		 <?php wp_list_categories(); ?>
-	</ul>
+	<h2><?php _e("Archives by Subject:", 'kubrick'); ?></h2>
+	  <ul>
+	     <?php wp_list_categories(); ?>
+	  </ul>
 
 </div>
 
Index: attachment.php
===================================================================
--- attachment.php	(revision 5170)
+++ attachment.php	(working copy)
@@ -2,51 +2,48 @@
 
 	<div id="content" class="widecolumn">
 
-  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
 
 		<div class="navigation">
 			<div class="alignleft">&nbsp;</div>
 			<div class="alignright">&nbsp;</div>
 		</div>
+
 <?php $attachment_link = get_the_attachment_link($post->ID, true, array(450, 800)); // This also populates the iconsize for the next line ?>
 <?php $_post = &get_post($post->ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?>
+
 		<div class="post" id="post-<?php the_ID(); ?>">
 			<h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> &raquo; <a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
+
 			<div class="entry">
 				<p class="<?php echo $classname; ?>"><?php echo $attachment_link; ?><br /><?php echo basename($post->guid); ?></p>
 
-				<?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;', 'kubrick') . '</p>'); ?>
 
-				<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
+				<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
 
 				<p class="postmetadata alt">
 					<small>
-						This entry was posted
-						<?php /* 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 <?php comments_rss_link('RSS 2.0'); ?> feed. 
+						<?php printf(__('This entry was posted on %s at %s and is filed under %s.', 'kubrick'), get_the_time(__('l, F jS, Y', 'kubrick')), get_the_time(), get_the_category_list(', '));?>
+						<?php printf(__('You can follow any responses to this entry through the %s feed.', 'kubrick'), '<a href="' . comments_rss('') . '">' . __('RSS 2.0', 'kubrick') . '</a>'); ?>
 
 						<?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(true); ?>" rel="trackback">trackback</a> from your own site.
+							// Both Comments and Pings are open
+							printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false));
 
-						<?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(true); ?> " rel="trackback">trackback</a> from your own site.
+						} elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Only Pings are Open
+							printf(__('Responses are currently closed, but you can <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false));
 
-						<?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.
+						} 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.', 'kubrick');
 
-						<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
-							// Neither Comments, nor Pings are open ?>
-							Both comments and pings are currently closed.
+						} elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Neither Comments, nor Pings are open
+							_e('Both comments and pings are currently closed.', 'kubrick');
 
-						<?php } edit_post_link('Edit this entry.','',''); ?>
+						} edit_post_link(__('Edit this entry.', 'kubrick'), '', ''); ?>
 
 					</small>
 				</p>
@@ -58,7 +55,7 @@
 
 	<?php endwhile; else: ?>
 
-		<p>Sorry, no attachments matched your criteria.</p>
+		<p><?php _e('Sorry, no attachments matched your criteria.', 'kubrick'); ?></p>
 
 <?php endif; ?>
 
Index: comments-popup.php
===================================================================
--- comments-popup.php	(revision 5170)
+++ comments-popup.php	(working copy)
@@ -4,9 +4,9 @@
 while ( have_posts()) : the_post();
 ?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
+<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
 <head>
-     <title><?php echo get_option('blogname'); ?> - Comments on <?php the_title(); ?></title>
+     <title><?php printf(__('%1$s - Comments on %2$s', 'kubrick'), get_option('blogname'), the_title('', '', false)); ?></title>
 
 	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
 	<style type="text/css" media="screen">
@@ -19,12 +19,12 @@
 
 <h1 id="header"><a href="" title="<?php echo get_option('blogname'); ?>"><?php echo get_option('blogname'); ?></a></h1>
 
-<h2 id="comments">Comments</h2>
+<h2 id="comments"><?php _e('Comments', 'kubrick'); ?></h2>
 
-<p><a href="<?php echo get_post_comments_feed_link($post->ID); ?>"><abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.</a></p>
+<p><a href="<?php echo get_post_comments_feed_link($post->ID); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.', 'kubrick'); ?></a></p>
 
 <?php if ('open' == $post->ping_status) { ?>
-<p>The <abbr title="Universal Resource Locator">URL</abbr> to TrackBack this entry is: <em><?php trackback_url() ?></em></p>
+<p><?php printf(__('The <acronym title="Uniform Resource Identifier">URI</acronym> to TrackBack this entry is: <em>%s</em>', 'kubrick'), trackback_url(false)); ?></p>
 <?php } ?>
 
 <?php
@@ -42,59 +42,59 @@
 <?php foreach ($comments as $comment) { ?>
 	<li id="comment-<?php comment_ID() ?>">
 	<?php comment_text() ?>
-	<p><cite><?php comment_type('Comment', 'Trackback', 'Pingback'); ?> by <?php comment_author_link() ?> &#8212; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite></p>
+	<p><cite><?php comment_type(__('Comment', 'kubrick'), __('Trackback', 'kubrick'), __('Pingback', 'kubrick')); ?> by <?php comment_author_link() ?> &#8212; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite></p>
 	</li>
 
 <?php } // end for each comment ?>
 </ol>
 <?php } else { // this is displayed if there are no comments so far ?>
-	<p>No comments yet.</p>
+	<p><?php _e('No comments yet.', 'kubrick'); ?></p>
 <?php } ?>
 
 <?php if ('open' == $post->comment_status) { ?>
-<h2>Leave a comment</h2>
-<p>Line and paragraph breaks automatic, e-mail address never displayed, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: <code><?php echo allowed_tags(); ?></code></p>
+<h2><?php _e('Leave a comment', 'kubrick'); ?></h2>
+<p><?php _e('Line and paragraph breaks automatic, e-mail address never displayed, <acronym title="Hypertext Markup Language">HTML</acronym> allowed:', 'kubrick'); ?> <code><?php echo allowed_tags(); ?></code></p>
 
 <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
-<?php if ( $user_ID ) : ?> 
-	<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Logout &raquo;</a></p>
-<?php else : ?> 
+<?php if ( $user_ID ) : ?>
+	<p><?php printf(__('Logged in as <a href="%s">%s</a>. <a href="%s" title="Log out of this account">Logout &raquo;</a>', 'kubrick'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity, get_option('siteurl') . '/wp-login.php?action=logout'); ?></p>
+<?php else : ?>
 	<p>
 	  <input type="text" name="author" id="author" class="textarea" value="<?php echo $comment_author; ?>" size="28" tabindex="1" />
-	   <label for="author">Name</label>
+	   <label for="author"><?php _e('Name', 'kubrick'); ?></label>
 	<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
 	<input type="hidden" name="redirect_to" value="<?php echo attribute_escape($_SERVER["REQUEST_URI"]); ?>" />
 	</p>
 
 	<p>
 	  <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="28" tabindex="2" />
-	   <label for="email">E-mail</label>
+	   <label for="email"><?php _e('E-mail', 'kubrick'); ?></label>
 	</p>
 
 	<p>
 	  <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="28" tabindex="3" />
-	   <label for="url"><abbr title="Universal Resource Locator">URL</abbr></label>
+	   <label for="url"><?php _e('<abbr title="Universal Resource Locator">URL</abbr>', 'kubrick'); ?></label>
 	</p>
 <?php endif; ?>
 
 	<p>
-	  <label for="comment">Your Comment</label>
+	  <label for="comment"><?php _e('Your Comment', 'kubrick'); ?></label>
 	<br />
 	  <textarea name="comment" id="comment" cols="70" rows="4" tabindex="4"></textarea>
 	</p>
 
 	<p>
-	  <input name="submit" type="submit" tabindex="5" value="Say It!" />
+	  <input name="submit" type="submit" tabindex="5" value="<?php _e('Say It!', 'kubrick'); ?>" />
 	</p>
 	<?php do_action('comment_form', $post->ID); ?>
 </form>
 <?php } else { // comments are closed ?>
-<p>Sorry, the comment form is closed at this time.</p>
+<p><?php _e('Sorry, the comment form is closed at this time.', 'kubrick'); ?></p>
 <?php }
 } // end password check
 ?>
 
-<div><strong><a href="javascript:window.close()">Close this window.</a></strong></div>
+<div><strong><a href="javascript:window.close()"><?php _e('Close this window.', 'kubrick'); ?></a></strong></div>
 
 <?php // if you delete this the sky will fall on your head
 endwhile;
@@ -102,7 +102,7 @@
 
 <!-- // this is just the end of the motor - don't touch that line either :) -->
 <?php //} ?>
-<p class="credit"><?php timer_stop(1); ?> <cite>Powered by <a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform"><strong>Wordpress</strong></a></cite></p>
+<p class="credit"><?php timer_stop(1); ?> <cite><?php _e('Powered by <a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform"><strong>Wordpress</strong></a>', 'kubrick'); ?></cite></p>
 <?php // Seen at http://www.mijnkopthee.nl/log2/archive/2003/05/28/esc(18) ?>
 <script type="text/javascript">
 <!--
Index: comments.php
===================================================================
--- comments.php	(revision 5170)
+++ comments.php	(working copy)
@@ -1,17 +1,17 @@
 <?php // Do not delete these lines
 	if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
-		die ('Please do not load this page directly. Thanks!');
+		wp_die(__('Please do not load this page directly. Thanks!', 'kubrick'));
 
-	if (!empty($post->post_password)) { // if there's a password
-		if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
-			?>
+        if (!empty($post->post_password)) { // if there's a password
+            if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
+				?>
 
-			<p class="nocomments">This post is password protected. Enter the password to view comments.<p>
+				<p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.', 'kubrick'); ?><p>
 
-			<?php
-			return;
-		}
-	}
+				<?php
+				return;
+            }
+        }
 
 	/* This variable is for alternating comment background */
 	$oddcomment = 'class="alt" ';
@@ -20,20 +20,20 @@
 <!-- You can start editing here. -->
 
 <?php if ($comments) : ?>
-	<h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to &#8220;<?php the_title(); ?>&#8221;</h3>
+	<h3 id="comments"><?php printf(__('%1$s to &#8220;%2$s&#8221;', 'kubrick'), comments_number(__('No Responses', 'kubrick'), __('One Response', 'kubrick'), __('% Responses', 'kubrick')), the_title('', '', false)); ?></h3> 
 
 	<ol class="commentlist">
 
 	<?php foreach ($comments as $comment) : ?>
 
 		<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
-			<cite><?php comment_author_link() ?></cite> Says:
+			<cite><?php comment_author_link() ?></cite> <?php _e('Says:', 'kubrick'); ?>
 			<?php if ($comment->comment_approved == '0') : ?>
-			<em>Your comment is awaiting moderation.</em>
+			<em><?php _e('Your comment is awaiting moderation.', 'kubrick'); ?></em>
 			<?php endif; ?>
 			<br />
 
-			<small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('F jS, Y') ?> at <?php comment_time() ?></a> <?php edit_comment_link('e','',''); ?></small>
+			<small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php printf(__('%s at %s', 'kubrick'), get_comment_date(__('F jS, Y', 'kubrick')), get_comment_time()); ?></a> <?php edit_comment_link(__('Edit comment', 'kubrick'),'',''); ?></small>
 
 			<?php comment_text() ?>
 
@@ -55,7 +55,7 @@
 
 	 <?php else : // comments are closed ?>
 		<!-- If comments are closed. -->
-		<p class="nocomments">Comments are closed.</p>
+		<p class="nocomments"><?php _e('Comments are closed.', 'kubrick') ?></p>
 
 	<?php endif; ?>
 <?php endif; ?>
@@ -63,36 +63,34 @@
 
 <?php if ('open' == $post->comment_status) : ?>
 
-<h3 id="respond">Leave a Reply</h3>
+<h3 id="respond"><?php _e('Leave a Reply', 'kubrick'); ?></h3>
 
 <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
-<p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p>
+<p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.', 'kubrick'), get_option('siteurl') . '/wp-login.php?redirect_to=' . get_permalink()); ?></p>
 <?php else : ?>
 
 <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
 
 <?php if ( $user_ID ) : ?>
-
-<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Logout &raquo;</a></p>
-
+	<p><?php printf(__('Logged in as <a href="%s">%s</a>. <a href="%s" title="Log out of this account">Logout &raquo;</a>', 'kubrick'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity, get_option('siteurl') . '/wp-login.php?action=logout'); ?></p>
 <?php else : ?>
 
 <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
-<label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>
+<label for="author"><small><?php _e('Name', 'kubrick'); ?> <?php if ($req) _e('(required)', 'kubrick'); ?></small></label></p>
 
 <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
-<label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>
+<label for="email"><small><?php _e('Mail (will not be published)', 'kubrick'); ?> <?php if ($req) _e('(required)', 'kubrick'); ?></small></label></p>
 
 <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
-<label for="url"><small>Website</small></label></p>
+<label for="url"><small><?php _e('Website', 'kubrick'); ?></small></label></p>
 
 <?php endif; ?>
 
-<!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
+<!--<p><small><?php _e('<strong>XHTML:</strong> You can use these tags:', 'kubrick'); ?> <?php echo allowed_tags(); ?></small></p>-->
 
 <p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
 
-<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
+<p><input name="submit" type="submit" id="submit" tabindex="5" value="<?php _e('Submit Comment', 'kubrick'); ?>" />
 <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
 </p>
 <?php do_action('comment_form', $post->ID); ?>
Index: footer.php
===================================================================
--- footer.php	(revision 5170)
+++ footer.php	(working copy)
@@ -3,11 +3,9 @@
 <div id="footer">
 <!-- If you'd like to support WordPress, having the "powered by" link someone on your blog is the best way, it's our only promotion or advertising. -->
 	<p>
-		<?php bloginfo('name'); ?> is proudly powered by
-		<a href="http://wordpress.org/">WordPress</a>
-		<br /><a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a>
-		and <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a>.
-		<!-- <?php echo get_num_queries(); ?> queries. <?php timer_stop(1); ?> seconds. -->
+		<?php printf(__('%s is proudly powered by <a href="http://wordpress.org/">WordPress</a>', 'kubrick'), get_bloginfo('name')); ?>
+		<br /><?php printf(__('<a href="feed:%s">Entries (RSS)</a> and <a href="feed:%s">Comments (RSS)</a>.', 'kubrick'), get_bloginfo('rss2_url'), get_bloginfo('comments_rss2_url')); ?>
+		<!-- <?php printf(__('%s queries. %s seconds.', 'kubrick'), get_num_queries(), timer_stop(0)); ?> -->
 	</p>
 </div>
 </div>
Index: functions.php
===================================================================
--- functions.php	(revision 5170)
+++ functions.php	(working copy)
@@ -7,6 +7,8 @@
         'after_title' => '</h2>',
     ));
 
+load_theme_textdomain('kubrick');
+
 function kubrick_head() {
 	$head = "<style type='text/css'>\n<!--";
 	$output = '';
Index: header.php
===================================================================
--- header.php	(revision 5170)
+++ header.php	(working copy)
@@ -4,7 +4,7 @@
 <head profile="http://gmpg.org/xfn/11">
 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
 
-<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>
+<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; <?php _e('Blog Archive', 'kubrick'); ?> <?php } ?> <?php wp_title(); ?></title>
 
 <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
 
Index: index.php
===================================================================
--- index.php	(revision 5170)
+++ index.php	(working copy)
@@ -7,27 +7,27 @@
 		<?php while (have_posts()) : the_post(); ?>
 
 			<div class="post" id="post-<?php the_ID(); ?>">
-				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
-				<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
+				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title('', '', false)); ?>"><?php the_title(); ?></a></h2>
+				<small><?php the_time(__('F jS, Y', 'kubrick')) ?> <!-- <?php printf(__('by %s', 'kubrick'), get_the_author()); ?> --></small>
 
 				<div class="entry">
-					<?php the_content('Read the rest of this entry &raquo;'); ?>
+					<?php the_content(__('Read the rest of this entry &raquo;', 'kubrick')); ?>
 				</div>
 
-				<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
+				<p class="postmetadata"><?php the_tags(__('Tags: '), ', ', '<br />'); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?>  <?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick')); ?></p>
 			</div>
 
 		<?php endwhile; ?>
 
 		<div class="navigation">
-			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
-			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
+			<div class="alignleft"><?php next_posts_link(__('&laquo; Previous Entries', 'kubrick')) ?></div>
+			<div class="alignright"><?php previous_posts_link(__('Next Entries &raquo;', 'kubrick')) ?></div>
 		</div>
 
 	<?php else : ?>
 
-		<h2 class="center">Not Found</h2>
-		<p class="center">Sorry, but you are looking for something that isn't here.</p>
+		<h2 class="center"><?php _e("Not Found", 'kubrick'); ?></h2>
+		<p class="center"><?php _e("Sorry, but you are looking for something that isn't here.", 'kubrick'); ?></p>
 		<?php include (TEMPLATEPATH . "/searchform.php"); ?>
 
 	<?php endif; ?>
Index: links.php
===================================================================
--- links.php	(revision 5170)
+++ links.php	(working copy)
@@ -8,10 +8,10 @@
 
 <div id="content" class="widecolumn">
 
-<h2>Links:</h2>
-<ul>
-<?php get_links_list(); ?>
-</ul>
+	<h2><?php _e('Links:', 'kubrick'); ?></h2>
+	<ul>
+	<?php get_links_list(); ?>
+	</ul>
 
 </div>
 
Index: page.php
===================================================================
--- page.php	(revision 5170)
+++ page.php	(working copy)
@@ -2,18 +2,19 @@
 
 	<div id="content" class="narrowcolumn">
 
-		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
 		<div class="post" id="post-<?php the_ID(); ?>">
 		<h2><?php the_title(); ?></h2>
 			<div class="entry">
-				<?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
+				<?php the_content('<p class="serif">' . __('Read the rest of this page', 'kubrick') . ' &raquo;</p>'); ?>
 
-				<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
+				<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages', 'kubrick') . ':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
 
 			</div>
 		</div>
-		<?php endwhile; endif; ?>
-	<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
+	<?php endwhile; endif; ?>
+	<?php edit_post_link(__('Edit this entry.', 'kubrick'), '<p>', '</p>'); ?>
+	
 	</div>
 
 <?php get_sidebar(); ?>
Index: search.php
===================================================================
--- search.php	(revision 5170)
+++ search.php	(working copy)
@@ -4,33 +4,33 @@
 
 	<?php if (have_posts()) : ?>
 
-		<h2 class="pagetitle">Search Results</h2>
+		<h2 class="pagetitle"><?php _e('Search Results', 'kubrick'); ?></h2>
 
 		<div class="navigation">
-			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
-			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
+			<div class="alignleft"><?php next_posts_link(__('&laquo; Previous Entries', 'kubrick')) ?></div>
+			<div class="alignright"><?php previous_posts_link(__('Next Entries &raquo;', 'kubrick')) ?></div>
 		</div>
 
 
 		<?php while (have_posts()) : the_post(); ?>
 
 			<div class="post">
-				<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
-				<small><?php the_time('l, F jS, Y') ?></small>
+				<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title('', '', false)); ?>"><?php the_title(); ?></a></h3>
+				<small><?php the_time(__('l, F jS, Y', 'kubrick')) ?></small>
 
-				<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
+				<p class="postmetadata"><?php the_tags(__('Tags: ', 'kubrick'), ', ', '<br />'); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?>  <?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick')); ?></p>
 			</div>
 
 		<?php endwhile; ?>
 
 		<div class="navigation">
-			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
-			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
+			<div class="alignleft"><?php next_posts_link(__('&laquo; Previous Entries', 'kubrick')) ?></div>
+			<div class="alignright"><?php previous_posts_link(__('Next Entries &raquo;', 'kubrick')) ?></div>
 		</div>
 
 	<?php else : ?>
 
-		<h2 class="center">No posts found. Try a different search?</h2>
+		<h2 class="center"><?php _e('No posts found. Try a different search?', 'kubrick'); ?></h2>
 		<?php include (TEMPLATEPATH . '/searchform.php'); ?>
 
 	<?php endif; ?>
Index: searchform.php
===================================================================
--- searchform.php	(revision 5170)
+++ searchform.php	(working copy)
@@ -1,5 +1,5 @@
 <form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
 <div><input type="text" value="<?php the_search_query(); ?>" name="s" id="s" />
-<input type="submit" id="searchsubmit" value="Search" />
+<input type="submit" id="searchsubmit" value="<?php _e('Search', 'kubrick'); ?>" />
 </div>
 </form>
Index: sidebar.php
===================================================================
--- sidebar.php	(revision 5170)
+++ sidebar.php	(working copy)
@@ -7,7 +7,7 @@
 			</li>
 
 			<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
-			<li><h2>Author</h2>
+			<li><h2><?php _e('Author', 'kubrick'); ?></h2>
 			<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
 			</li>
 			-->
@@ -18,51 +18,51 @@
 
 			<?php /* If this is a 404 page */ if (is_404()) { ?>
 			<?php /* If this is a category archive */ } elseif (is_category()) { ?>
-			<p>You are currently browsing the archives for the <?php single_cat_title(''); ?> category.</p>
+			<p><?php printf(__('You are currently browsing the archives for the &#39;%s&#39; category.', 'kubrick'), single_cat_title('', false)); ?></p>
 
 			<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
-			<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives
-			for the day <?php the_time('l, F jS, Y'); ?>.</p>
+			<p><?php printf(__('You are currently browsing the <a href="%s">%s</a> weblog archives
+			for the day %s.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name'), get_the_time(__('l, F jS, Y', 'kubrick'))); ?></p>
 
 			<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
-			<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives
-			for <?php the_time('F, Y'); ?>.</p>
+			<p><?php printf(__('You are currently browsing the <a href="%s">%s</a> weblog archives
+			for the month %s.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name'), get_the_time(__('F, Y', 'kubrick'))); ?></p>
 
 			<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
-			<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives
-			for the year <?php the_time('Y'); ?>.</p>
+			<p><?php printf(__('You are currently browsing the <a href="%s">%s</a> weblog archives
+			for the year %s.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name'), get_the_time(__('Y', 'kubrick'))); ?></p>
 
 			<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
-			<p>You have searched the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives
-			for <strong>'<?php the_search_query(); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p>
+			<p><?php printf(__('You have searched the <a href="%s">%s</a> weblog archives
+			for <strong>&#39;%s&#39;</strong>. If you are unable to find anything in these search results, you can try one of these links.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name'), the_search_query()); ?></p>
 
 			<?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
-			<p>You are currently browsing the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives.</p>
+			<p><?php printf(__('You are currently browsing the <a href="%s">%s</a> weblog archives.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name')); ?></p>
 
 			<?php } ?>
 				
 			</li> <?php }?>
 
-			<?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
+			<?php wp_list_pages('title_li=<h2>' . __('Pages', 'kubrick') . '</h2>' ); ?>
 
-			<li><h2>Archives</h2>
+			<li><h2><?php _e('Archives', 'kubrick'); ?></h2>
 				<ul>
 				<?php wp_get_archives('type=monthly'); ?>
 				</ul>
 			</li>
 
-			<?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>
+			<?php wp_list_categories('show_count=1&title_li=<h2>' . __('Categories', 'kubrick') . '</h2>'); ?>
 
 			<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
 				<?php wp_list_bookmarks(); ?>
 
-				<li><h2>Meta</h2>
+				<li><h2><?php _e('Meta', 'kubrick'); ?></h2>
 				<ul>
 					<?php wp_register(); ?>
 					<li><?php wp_loginout(); ?></li>
-					<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
-					<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
-					<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
+					<li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional', 'kubrick'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>', 'kubrick'); ?></a></li>
+					<li><a href="http://gmpg.org/xfn/"><?php _e('<abbr title="XHTML Friends Network">XFN</abbr>', 'kubrick'); ?></a></li>
+					<li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'kubrick'); ?>"><?php _e('WordPress', 'kubrick'); ?></a></li>
 					<?php wp_meta(); ?>
 				</ul>
 				</li>
Index: single.php
===================================================================
--- single.php	(revision 5170)
+++ single.php	(working copy)
@@ -5,47 +5,41 @@
 	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
 
 		<div class="navigation">
-			<div class="alignleft"><?php previous_post_link('&laquo; %link') ?></div>
-			<div class="alignright"><?php next_post_link('%link &raquo;') ?></div>
+			<div class="alignleft"><?php previous_post_link(__('&laquo; %link', 'kubrick')) ?></div>
+			<div class="alignright"><?php next_post_link(__('%link &raquo;', 'kubrick')) ?></div>
 		</div>
 
 		<div class="post" id="post-<?php the_ID(); ?>">
-			<h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
+			<h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php __('Permanent Link:', 'kubrick') . ' ' . the_title(); ?>"><?php the_title(); ?></a></h2>
 
 			<div class="entry">
-				<?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;', 'kubrick') . '</p>'); ?>
 
-				<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
+				<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
 				<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
 
 				<p class="postmetadata alt">
 					<small>
-						This entry was posted
-						<?php /* 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 <?php comments_rss_link('RSS 2.0'); ?> feed.
+						<?php printf(__('This entry was posted on %s at %s and is filed under %s.', 'kubrick'), get_the_time(__('l, F jS, Y', 'kubrick')), get_the_time(), get_the_category_list(', '));?>
+						<?php printf(__('You can follow any responses to this entry through the %s feed.', 'kubrick'), '<a href="' . comments_rss('') . '">' . __('RSS 2.0', 'kubrick') . '</a>'); ?>
 
 						<?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(true); ?>" rel="trackback">trackback</a> from your own site.
+							// Both Comments and Pings are open
+							printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false));
 
-						<?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(true); ?> " rel="trackback">trackback</a> from your own site.
+						} elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Only Pings are Open
+							printf(__('Responses are currently closed, but you can <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false));
 
-						<?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.
+						} 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.', 'kubrick');
 
-						<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
-							// Neither Comments, nor Pings are open ?>
-							Both comments and pings are currently closed.
+						} elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Neither Comments, nor Pings are open
+							_e('Both comments and pings are currently closed.', 'kubrick');
 
-						<?php } edit_post_link('Edit this entry.','',''); ?>
+						} edit_post_link(__('Edit this entry.', 'kubrick'), '', ''); ?>
 
 					</small>
 				</p>
@@ -57,7 +51,7 @@
 
 	<?php endwhile; else: ?>
 
-		<p>Sorry, no posts matched your criteria.</p>
+		<p><?php _e('Sorry, no posts matched your criteria.', 'kubrick'); ?></p>
 
 <?php endif; ?>
 
