<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[14771] trunk/wp-includes/theme-compat:
  First pass of conversion of theme-compat to the I18N version of the files.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14771">14771</a></dd>
<dt>Author</dt> <dd>westi</dd>
<dt>Date</dt> <dd>2010-05-20 21:53:11 +0000 (Thu, 20 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>First pass of conversion of theme-compat to the I18N version of the files. See <a href="http://trac.wordpress.org/ticket/12425">#12425</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpincludesthemecompatcommentspopupphp">trunk/wp-includes/theme-compat/comments-popup.php</a></li>
<li><a href="#trunkwpincludesthemecompatcommentsphp">trunk/wp-includes/theme-compat/comments.php</a></li>
<li><a href="#trunkwpincludesthemecompatfooterphp">trunk/wp-includes/theme-compat/footer.php</a></li>
<li><a href="#trunkwpincludesthemecompatsidebarphp">trunk/wp-includes/theme-compat/sidebar.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludesthemecompatcommentspopupphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/theme-compat/comments-popup.php (14770 => 14771)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/theme-compat/comments-popup.php        2010-05-20 21:44:33 UTC (rev 14770)
+++ trunk/wp-includes/theme-compat/comments-popup.php        2010-05-20 21:53:11 UTC (rev 14771)
</span><span class="lines">@@ -11,7 +11,7 @@
</span><span class="cx"> ?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
</span><span class="cx"> &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
</span><span class="cx"> &lt;head&gt;
</span><del>-     &lt;title&gt;&lt;?php echo get_option('blogname'); ?&gt; - Comments on &lt;?php the_title(); ?&gt;&lt;/title&gt;
</del><ins>+     &lt;title&gt;&lt;?php printf(__('%1$s - Comments on %2$s'), get_option('blogname'), the_title('','',false)); ?&gt;&lt;/title&gt;
</ins><span class="cx"> 
</span><span class="cx">         &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;&lt;?php bloginfo('html_type'); ?&gt;; charset=&lt;?php echo get_option('blog_charset'); ?&gt;&quot; /&gt;
</span><span class="cx">         &lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
</span><span class="lines">@@ -28,14 +28,14 @@
</span><span class="cx"> /* Don't remove these lines. */
</span><span class="cx"> add_filter('comment_text', 'popuplinks');
</span><span class="cx"> if ( have_posts() ) :
</span><del>-while ( have_posts() ) : the_post();
</del><ins>+while( have_posts()) : the_post();
</ins><span class="cx"> ?&gt;
</span><del>-&lt;h2 id=&quot;comments&quot;&gt;Comments&lt;/h2&gt;
</del><ins>+&lt;h2 id=&quot;comments&quot;&gt;&lt;?php _e('Comments'); ?&gt;&lt;/h2&gt;
</ins><span class="cx"> 
</span><del>-&lt;p&gt;&lt;a href=&quot;&lt;?php echo get_post_comments_feed_link($post-&gt;ID); ?&gt;&quot;&gt;&lt;abbr title=&quot;Really Simple Syndication&quot;&gt;RSS&lt;/abbr&gt; feed for comments on this post.&lt;/a&gt;&lt;/p&gt;
</del><ins>+&lt;p&gt;&lt;a href=&quot;&lt;?php echo get_post_comments_feed_link($post-&gt;ID); ?&gt;&quot;&gt;&lt;?php _e('&lt;abbr title=&quot;Really Simple Syndication&quot;&gt;RSS&lt;/abbr&gt; feed for comments on this post.'); ?&gt;&lt;/a&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;?php if ( pings_open() ) { ?&gt;
</span><del>-&lt;p&gt;The &lt;abbr title=&quot;Universal Resource Locator&quot;&gt;URL&lt;/abbr&gt; to TrackBack this entry is: &lt;em&gt;&lt;?php trackback_url() ?&gt;&lt;/em&gt;&lt;/p&gt;
</del><ins>+&lt;p&gt;&lt;?php printf(__('The &lt;abbr title=&quot;Universal Resource Locator&quot;&gt;URL&lt;/abbr&gt; to TrackBack this entry is: &lt;em&gt;%s&lt;/em&gt;'), get_trackback_url()); ?&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php } ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php
</span><span class="lines">@@ -53,69 +53,69 @@
</span><span class="cx"> &lt;?php foreach ($comments as $comment) { ?&gt;
</span><span class="cx">         &lt;li id=&quot;comment-&lt;?php comment_ID() ?&gt;&quot;&gt;
</span><span class="cx">         &lt;?php comment_text() ?&gt;
</span><del>-        &lt;p&gt;&lt;cite&gt;&lt;?php comment_type('Comment', 'Trackback', 'Pingback'); ?&gt; by &lt;?php comment_author_link() ?&gt; &amp;#8212; &lt;?php comment_date() ?&gt; @ &lt;a href=&quot;#comment-&lt;?php comment_ID() ?&gt;&quot;&gt;&lt;?php comment_time() ?&gt;&lt;/a&gt;&lt;/cite&gt;&lt;/p&gt;
</del><ins>+        &lt;p&gt;&lt;cite&gt;&lt;?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?&gt; &lt;?php printf(__('by %1$s &amp;#8212; %2$s @ &lt;a href=&quot;#comment-%3$s&quot;&gt;%4$s&lt;/a&gt;'), get_comment_author_link(), get_comment_date(), get_comment_ID(), get_comment_time()); ?&gt;&lt;/cite&gt;&lt;/p&gt;
</ins><span class="cx">         &lt;/li&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php } // end for each comment ?&gt;
</span><span class="cx"> &lt;/ol&gt;
</span><span class="cx"> &lt;?php } else { // this is displayed if there are no comments so far ?&gt;
</span><del>-        &lt;p&gt;No comments yet.&lt;/p&gt;
</del><ins>+        &lt;p&gt;&lt;?php _e('No comments yet.'); ?&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php } ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php if ( comments_open() ) { ?&gt;
</span><del>-&lt;h2&gt;Leave a comment&lt;/h2&gt;
-&lt;p&gt;Line and paragraph breaks automatic, e-mail address never displayed, &lt;acronym title=&quot;Hypertext Markup Language&quot;&gt;HTML&lt;/acronym&gt; allowed: &lt;code&gt;&lt;?php echo allowed_tags(); ?&gt;&lt;/code&gt;&lt;/p&gt;
</del><ins>+&lt;h2&gt;&lt;?php _e('Leave a comment'); ?&gt;&lt;/h2&gt;
+&lt;p&gt;&lt;?php printf(__('Line and paragraph breaks automatic, e-mail address never displayed, &lt;acronym title=&quot;Hypertext Markup Language&quot;&gt;HTML&lt;/acronym&gt; allowed: &lt;code&gt;%s&lt;/code&gt;'), allowed_tags()); ?&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;form action=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-comments-post.php&quot; method=&quot;post&quot; id=&quot;commentform&quot;&gt;
</span><span class="cx"> &lt;?php if ( $user_ID ) : ?&gt;
</span><del>-        &lt;p&gt;Logged in as &lt;a href=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-admin/profile.php&quot;&gt;&lt;?php echo $user_identity; ?&gt;&lt;/a&gt;. &lt;a href=&quot;&lt;?php echo wp_logout_url(get_permalink()); ?&gt;&quot; title=&quot;Log out of this account&quot;&gt;Log out &amp;raquo;&lt;/a&gt;&lt;/p&gt;
</del><ins>+        &lt;p&gt;&lt;?php printf(__('Logged in as &lt;a href=&quot;%1$s&quot;&gt;%2$s&lt;/a&gt;. &lt;a href=&quot;%3$s&quot; title=&quot;Log out of this account&quot;&gt;Log out &amp;raquo;&lt;/a&gt;'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity, wp_logout_url(get_permalink())); ?&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php else : ?&gt;
</span><span class="cx">         &lt;p&gt;
</span><span class="cx">           &lt;input type=&quot;text&quot; name=&quot;author&quot; id=&quot;author&quot; class=&quot;textarea&quot; value=&quot;&lt;?php echo esc_attr($comment_author); ?&gt;&quot; size=&quot;28&quot; tabindex=&quot;1&quot; /&gt;
</span><del>-           &lt;label for=&quot;author&quot;&gt;Name&lt;/label&gt;
</del><ins>+           &lt;label for=&quot;author&quot;&gt;&lt;?php _e('Name'); ?&gt;&lt;/label&gt;
</ins><span class="cx">         &lt;/p&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;p&gt;
</span><span class="cx">           &lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&lt;?php echo esc_attr($comment_author_email); ?&gt;&quot; size=&quot;28&quot; tabindex=&quot;2&quot; /&gt;
</span><del>-           &lt;label for=&quot;email&quot;&gt;E-mail&lt;/label&gt;
</del><ins>+           &lt;label for=&quot;email&quot;&gt;&lt;?php _e('E-mail'); ?&gt;&lt;/label&gt;
</ins><span class="cx">         &lt;/p&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;p&gt;
</span><span class="cx">           &lt;input type=&quot;text&quot; name=&quot;url&quot; id=&quot;url&quot; value=&quot;&lt;?php echo esc_attr($comment_author_url); ?&gt;&quot; size=&quot;28&quot; tabindex=&quot;3&quot; /&gt;
</span><del>-           &lt;label for=&quot;url&quot;&gt;&lt;abbr title=&quot;Universal Resource Locator&quot;&gt;URL&lt;/abbr&gt;&lt;/label&gt;
</del><ins>+           &lt;label for=&quot;url&quot;&gt;&lt;?php _e('&lt;abbr title=&quot;Universal Resource Locator&quot;&gt;URL&lt;/abbr&gt;'); ?&gt;&lt;/label&gt;
</ins><span class="cx">         &lt;/p&gt;
</span><span class="cx"> &lt;?php endif; ?&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;p&gt;
</span><del>-          &lt;label for=&quot;comment&quot;&gt;Your Comment&lt;/label&gt;
</del><ins>+          &lt;label for=&quot;comment&quot;&gt;&lt;?php _e('Your Comment'); ?&gt;&lt;/label&gt;
</ins><span class="cx">         &lt;br /&gt;
</span><span class="cx">           &lt;textarea name=&quot;comment&quot; id=&quot;comment&quot; cols=&quot;70&quot; rows=&quot;4&quot; tabindex=&quot;4&quot;&gt;&lt;/textarea&gt;
</span><span class="cx">         &lt;/p&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;p&gt;
</span><del>-      &lt;input type=&quot;hidden&quot; name=&quot;comment_post_ID&quot; value=&quot;&lt;?php echo $id; ?&gt;&quot; /&gt;
</del><ins>+          &lt;input type=&quot;hidden&quot; name=&quot;comment_post_ID&quot; value=&quot;&lt;?php echo $id; ?&gt;&quot; /&gt;
</ins><span class="cx">           &lt;input type=&quot;hidden&quot; name=&quot;redirect_to&quot; value=&quot;&lt;?php echo esc_attr($_SERVER[&quot;REQUEST_URI&quot;]); ?&gt;&quot; /&gt;
</span><del>-          &lt;input name=&quot;submit&quot; type=&quot;submit&quot; tabindex=&quot;5&quot; value=&quot;Say It!&quot; /&gt;
</del><ins>+          &lt;input name=&quot;submit&quot; type=&quot;submit&quot; tabindex=&quot;5&quot; value=&quot;&lt;?php _e('Say It!' ); ?&gt;&quot; /&gt;
</ins><span class="cx">         &lt;/p&gt;
</span><span class="cx">         &lt;?php do_action('comment_form', $post-&gt;ID); ?&gt;
</span><span class="cx"> &lt;/form&gt;
</span><span class="cx"> &lt;?php } else { // comments are closed ?&gt;
</span><del>-&lt;p&gt;Sorry, the comment form is closed at this time.&lt;/p&gt;
</del><ins>+&lt;p&gt;&lt;?php _e('Sorry, the comment form is closed at this time.'); ?&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php }
</span><span class="cx"> } // end password check
</span><span class="cx"> ?&gt;
</span><span class="cx"> 
</span><del>-&lt;div&gt;&lt;strong&gt;&lt;a href=&quot;javascript:window.close()&quot;&gt;Close this window.&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;
</del><ins>+&lt;div&gt;&lt;strong&gt;&lt;a href=&quot;javascript:window.close()&quot;&gt;&lt;?php _e('Close this window.'); ?&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;?php // if you delete this the sky will fall on your head
</span><del>-endwhile; //endwhile have_posts()
-else: //have_posts()
</del><ins>+endwhile; // have_posts()
+else: // have_posts()
</ins><span class="cx"> ?&gt;
</span><del>-&lt;p&gt;Sorry, no posts matched your criteria.&lt;/p&gt;
</del><ins>+&lt;p&gt;&lt;?php _e('Sorry, no posts matched your criteria.'); ?&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php endif; ?&gt;
</span><span class="cx"> &lt;!-- // this is just the end of the motor - don't touch that line either :) --&gt;
</span><span class="cx"> &lt;?php //} ?&gt;
</span><del>-&lt;p class=&quot;credit&quot;&gt;&lt;?php timer_stop(1); ?&gt; &lt;cite&gt;Powered by &lt;a href=&quot;http://wordpress.org/&quot; title=&quot;Powered by WordPress, state-of-the-art semantic personal publishing platform&quot;&gt;&lt;strong&gt;WordPress&lt;/strong&gt;&lt;/a&gt;&lt;/cite&gt;&lt;/p&gt;
</del><ins>+&lt;p class=&quot;credit&quot;&gt;&lt;?php timer_stop(1); ?&gt; &lt;cite&gt;&lt;?php printf(__('Powered by &lt;a href=&quot;%s&quot; title=&quot;Powered by WordPress, state-of-the-art semantic personal publishing platform&quot;&gt;&lt;strong&gt;WordPress&lt;/strong&gt;&lt;/a&gt;'), 'http://wordpress.org/'); ?&gt;&lt;/cite&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php // Seen at http://www.mijnkopthee.nl/log2/archive/2003/05/28/esc(18) ?&gt;
</span><span class="cx"> &lt;script type=&quot;text/javascript&quot;&gt;
</span><span class="cx"> &lt;!--
</span><span class="lines">@@ -126,4 +126,4 @@
</span><span class="cx"> // --&gt;
</span><span class="cx"> &lt;/script&gt;
</span><span class="cx"> &lt;/body&gt;
</span><del>-&lt;/html&gt;
</del><span class="cx">\ No newline at end of file
</span><ins>+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkwpincludesthemecompatcommentsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/theme-compat/comments.php (14770 => 14771)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/theme-compat/comments.php        2010-05-20 21:44:33 UTC (rev 14770)
+++ trunk/wp-includes/theme-compat/comments.php        2010-05-20 21:53:11 UTC (rev 14771)
</span><span class="lines">@@ -12,9 +12,9 @@
</span><span class="cx"> // Do not delete these lines
</span><span class="cx">         if (!empty($_SERVER['SCRIPT_FILENAME']) &amp;&amp; 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
</span><span class="cx">                 die ('Please do not load this page directly. Thanks!');
</span><del>-
</del><ins>+        
</ins><span class="cx">         if ( post_password_required() ) { ?&gt;
</span><del>-                &lt;p class=&quot;nocomments&quot;&gt;This post is password protected. Enter the password to view comments.&lt;/p&gt;
</del><ins>+                &lt;p class=&quot;nocomments&quot;&gt;&lt;?php _e('This post is password protected. Enter the password to view comments.'); ?&gt;&lt;/p&gt; 
</ins><span class="cx">         &lt;?php
</span><span class="cx">                 return;
</span><span class="cx">         }
</span><span class="lines">@@ -23,7 +23,7 @@
</span><span class="cx"> &lt;!-- You can start editing here. --&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php if ( have_comments() ) : ?&gt;
</span><del>-        &lt;h3 id=&quot;comments&quot;&gt;&lt;?php comments_number('No Responses', 'One Response', '% Responses' );?&gt; to &amp;#8220;&lt;?php the_title(); ?&gt;&amp;#8221;&lt;/h3&gt;
</del><ins>+        &lt;h3 id=&quot;comments&quot;&gt;&lt;?php comments_number(__('No Responses'), __('One Response'), __('% Responses'));?&gt; &lt;?php printf(__('to &amp;#8220;%s&amp;#8221;'), the_title('', '', false)); ?&gt;&lt;/h3&gt;
</ins><span class="cx"> 
</span><span class="cx">         &lt;div class=&quot;navigation&quot;&gt;
</span><span class="cx">                 &lt;div class=&quot;alignleft&quot;&gt;&lt;?php previous_comments_link() ?&gt;&lt;/div&gt;
</span><span class="lines">@@ -31,7 +31,7 @@
</span><span class="cx">         &lt;/div&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;ol class=&quot;commentlist&quot;&gt;
</span><del>-        &lt;?php wp_list_comments(); ?&gt;
</del><ins>+        &lt;?php wp_list_comments();?&gt;
</ins><span class="cx">         &lt;/ol&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;div class=&quot;navigation&quot;&gt;
</span><span class="lines">@@ -45,7 +45,7 @@
</span><span class="cx"> 
</span><span class="cx">          &lt;?php else : // comments are closed ?&gt;
</span><span class="cx">                 &lt;!-- If comments are closed. --&gt;
</span><del>-                &lt;p class=&quot;nocomments&quot;&gt;Comments are closed.&lt;/p&gt;
</del><ins>+                &lt;p class=&quot;nocomments&quot;&gt;&lt;?php _e('Comments are closed.'); ?&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx">         &lt;?php endif; ?&gt;
</span><span class="cx"> &lt;?php endif; ?&gt;
</span><span class="lines">@@ -55,41 +55,41 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;div id=&quot;respond&quot;&gt;
</span><span class="cx"> 
</span><del>-&lt;h3&gt;&lt;?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?&gt;&lt;/h3&gt;
</del><ins>+&lt;h3&gt;&lt;?php comment_form_title( __('Leave a Reply'), __('Leave a Reply to %s' ) ); ?&gt;&lt;/h3&gt;
</ins><span class="cx"> 
</span><del>-&lt;div class=&quot;cancel-comment-reply&quot;&gt;
-        &lt;small&gt;&lt;?php cancel_comment_reply_link(); ?&gt;&lt;/small&gt;
-&lt;/div&gt;
</del><ins>+&lt;div id=&quot;cancel-comment-reply&quot;&gt; 
+        &lt;small&gt;&lt;?php cancel_comment_reply_link() ?&gt;&lt;/small&gt;
+&lt;/div&gt; 
</ins><span class="cx"> 
</span><span class="cx"> &lt;?php if ( get_option('comment_registration') &amp;&amp; !is_user_logged_in() ) : ?&gt;
</span><del>-&lt;p&gt;You must be &lt;a href=&quot;&lt;?php echo wp_login_url( get_permalink() ); ?&gt;&quot;&gt;logged in&lt;/a&gt; to post a comment.&lt;/p&gt;
</del><ins>+&lt;p&gt;&lt;?php printf(__('You must be &lt;a href=&quot;%s&quot;&gt;logged in&lt;/a&gt; to post a comment.'), wp_login_url( get_permalink() )); ?&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php else : ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;form action=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-comments-post.php&quot; method=&quot;post&quot; id=&quot;commentform&quot;&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php if ( is_user_logged_in() ) : ?&gt;
</span><span class="cx"> 
</span><del>-&lt;p&gt;Logged in as &lt;a href=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-admin/profile.php&quot;&gt;&lt;?php echo $user_identity; ?&gt;&lt;/a&gt;. &lt;a href=&quot;&lt;?php echo wp_logout_url(get_permalink()); ?&gt;&quot; title=&quot;Log out of this account&quot;&gt;Log out &amp;raquo;&lt;/a&gt;&lt;/p&gt;
</del><ins>+&lt;p&gt;&lt;?php printf(__('Logged in as &lt;a href=&quot;%1$s&quot;&gt;%2$s&lt;/a&gt;.'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?&gt; &lt;a href=&quot;&lt;?php echo wp_logout_url(get_permalink()); ?&gt;&quot; title=&quot;&lt;?php _e('Log out of this account'); ?&gt;&quot;&gt;&lt;?php _e('Log out &amp;raquo;'); ?&gt;&lt;/a&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;?php else : ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;author&quot; id=&quot;author&quot; value=&quot;&lt;?php echo esc_attr($comment_author); ?&gt;&quot; size=&quot;22&quot; tabindex=&quot;1&quot; &lt;?php if ($req) echo &quot;aria-required='true'&quot;; ?&gt; /&gt;
</span><del>-&lt;label for=&quot;author&quot;&gt;&lt;small&gt;Name &lt;?php if ($req) echo &quot;(required)&quot;; ?&gt;&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;
</del><ins>+&lt;label for=&quot;author&quot;&gt;&lt;small&gt;&lt;?php _e('Name'); ?&gt; &lt;?php if ($req) _e('(required)'); ?&gt;&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&lt;?php echo esc_attr($comment_author_email); ?&gt;&quot; size=&quot;22&quot; tabindex=&quot;2&quot; &lt;?php if ($req) echo &quot;aria-required='true'&quot;; ?&gt; /&gt;
</span><del>-&lt;label for=&quot;email&quot;&gt;&lt;small&gt;Mail (will not be published) &lt;?php if ($req) echo &quot;(required)&quot;; ?&gt;&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;
</del><ins>+&lt;label for=&quot;email&quot;&gt;&lt;small&gt;&lt;?php _e('Mail (will not be published)'); ?&gt; &lt;?php if ($req) _e('(required)'); ?&gt;&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><del>-&lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;url&quot; id=&quot;url&quot; value=&quot;&lt;?php echo esc_attr($comment_author_url); ?&gt;&quot; size=&quot;22&quot; tabindex=&quot;3&quot; /&gt;
-&lt;label for=&quot;url&quot;&gt;&lt;small&gt;Website&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;
</del><ins>+&lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;url&quot; id=&quot;url&quot; value=&quot;&lt;?php echo  esc_attr($comment_author_url); ?&gt;&quot; size=&quot;22&quot; tabindex=&quot;3&quot; /&gt;
+&lt;label for=&quot;url&quot;&gt;&lt;small&gt;&lt;?php _e('Website'); ?&gt;&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;?php endif; ?&gt;
</span><span class="cx"> 
</span><del>-&lt;!--&lt;p&gt;&lt;small&gt;&lt;strong&gt;XHTML:&lt;/strong&gt; You can use these tags: &lt;code&gt;&lt;?php echo allowed_tags(); ?&gt;&lt;/code&gt;&lt;/small&gt;&lt;/p&gt;--&gt;
</del><ins>+&lt;!--&lt;p&gt;&lt;small&gt;&lt;?php printf(__('&lt;strong&gt;XHTML:&lt;/strong&gt; You can use these tags: &lt;code&gt;%s&lt;/code&gt;'), allowed_tags()); ?&gt;&lt;/small&gt;&lt;/p&gt;--&gt;
</ins><span class="cx"> 
</span><span class="cx"> &lt;p&gt;&lt;textarea name=&quot;comment&quot; id=&quot;comment&quot; cols=&quot;58&quot; rows=&quot;10&quot; tabindex=&quot;4&quot;&gt;&lt;/textarea&gt;&lt;/p&gt;
</span><span class="cx"> 
</span><del>-&lt;p&gt;&lt;input name=&quot;submit&quot; type=&quot;submit&quot; id=&quot;submit&quot; tabindex=&quot;5&quot; value=&quot;Submit Comment&quot; /&gt;
-&lt;?php comment_id_fields(); ?&gt;
</del><ins>+&lt;p&gt;&lt;input name=&quot;submit&quot; type=&quot;submit&quot; id=&quot;submit&quot; tabindex=&quot;5&quot; value=&quot;&lt;?php _e('Submit Comment'); ?&gt;&quot; /&gt;
+&lt;?php comment_id_fields(); ?&gt; 
</ins><span class="cx"> &lt;/p&gt;
</span><span class="cx"> &lt;?php do_action('comment_form', $post-&gt;ID); ?&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpincludesthemecompatfooterphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/theme-compat/footer.php (14770 => 14771)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/theme-compat/footer.php        2010-05-20 21:44:33 UTC (rev 14770)
+++ trunk/wp-includes/theme-compat/footer.php        2010-05-20 21:53:11 UTC (rev 14771)
</span><span class="lines">@@ -14,11 +14,10 @@
</span><span class="cx"> &lt;div id=&quot;footer&quot; role=&quot;contentinfo&quot;&gt;
</span><span class="cx"> &lt;!-- If you'd like to support WordPress, having the &quot;powered by&quot; link somewhere on your blog is the best way; it's our only promotion or advertising. --&gt;
</span><span class="cx">         &lt;p&gt;
</span><del>-                &lt;?php bloginfo('name'); ?&gt; is proudly powered by
-                &lt;a href=&quot;http://wordpress.org/&quot;&gt;WordPress&lt;/a&gt;
-                &lt;br /&gt;&lt;a href=&quot;&lt;?php bloginfo('rss2_url'); ?&gt;&quot;&gt;Entries (RSS)&lt;/a&gt;
-                and &lt;a href=&quot;&lt;?php bloginfo('comments_rss2_url'); ?&gt;&quot;&gt;Comments (RSS)&lt;/a&gt;.
-                &lt;!-- &lt;?php echo get_num_queries(); ?&gt; queries. &lt;?php timer_stop(1); ?&gt; seconds. --&gt;
</del><ins>+                &lt;?php printf(__('%1$s is proudly powered by %2$s'), get_bloginfo('name'),
+                '&lt;a href=&quot;http://wordpress.org/&quot;&gt;WordPress&lt;/a&gt;'); ?&gt;
+                &lt;br /&gt;&lt;?php printf(__('%1$s and %2$s.'), '&lt;a href=&quot;' . get_bloginfo('rss2_url') . '&quot;&gt;' . __('Entries (RSS)') . '&lt;/a&gt;', '&lt;a href=&quot;' . get_bloginfo('comments_rss2_url') . '&quot;&gt;' . __('Comments (RSS)') . '&lt;/a&gt;'); ?&gt;
+                &lt;!-- &lt;?php printf(__('%d queries. %s seconds.'), get_num_queries(), timer_stop(0, 3)); ?&gt; --&gt;
</ins><span class="cx">         &lt;/p&gt;
</span><span class="cx"> &lt;/div&gt;
</span><span class="cx"> &lt;/div&gt;
</span></span></pre></div>
<a id="trunkwpincludesthemecompatsidebarphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/theme-compat/sidebar.php (14770 => 14771)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/theme-compat/sidebar.php        2010-05-20 21:44:33 UTC (rev 14770)
+++ trunk/wp-includes/theme-compat/sidebar.php        2010-05-20 21:53:11 UTC (rev 14771)
</span><span class="lines">@@ -18,7 +18,7 @@
</span><span class="cx">                         &lt;/li&gt;
</span><span class="cx"> 
</span><span class="cx">                         &lt;!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
</span><del>-                        &lt;li&gt;&lt;h2&gt;Author&lt;/h2&gt;
</del><ins>+                        &lt;li&gt;&lt;h2&gt;&lt;?php _e('Author'); ?&gt;&lt;/h2&gt;
</ins><span class="cx">                         &lt;p&gt;A little something about you, the author. Nothing lengthy, just an overview.&lt;/p&gt;
</span><span class="cx">                         &lt;/li&gt;
</span><span class="cx">                         --&gt;
</span><span class="lines">@@ -29,26 +29,22 @@
</span><span class="cx"> 
</span><span class="cx">                         &lt;?php /* If this is a 404 page */ if (is_404()) { ?&gt;
</span><span class="cx">                         &lt;?php /* If this is a category archive */ } elseif (is_category()) { ?&gt;
</span><del>-                        &lt;p&gt;You are currently browsing the archives for the &lt;?php single_cat_title(''); ?&gt; category.&lt;/p&gt;
</del><ins>+                        &lt;p&gt;&lt;?php printf(__('You are currently browsing the archives for the %s category.'), single_cat_title('', false)); ?&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx">                         &lt;?php /* If this is a daily archive */ } elseif (is_day()) { ?&gt;
</span><del>-                        &lt;p&gt;You are currently browsing the &lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt; blog archives
-                        for the day &lt;?php the_time('l, F jS, Y'); ?&gt;.&lt;/p&gt;
</del><ins>+                        &lt;p&gt;&lt;?php printf(__('You are currently browsing the &lt;a href=&quot;%1$s/&quot;&gt;%2$s&lt;/a&gt; blog archives for the day %3$s.'), get_bloginfo('url'), get_bloginfo('name'), get_the_time(__('l, F jS, Y'))); ?&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx">                         &lt;?php /* If this is a monthly archive */ } elseif (is_month()) { ?&gt;
</span><del>-                        &lt;p&gt;You are currently browsing the &lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt; blog archives
-                        for &lt;?php the_time('F, Y'); ?&gt;.&lt;/p&gt;
</del><ins>+                        &lt;p&gt;&lt;?php printf(__('You are currently browsing the &lt;a href=&quot;%1$s/&quot;&gt;%2$s&lt;/a&gt; blog archives for %3$s.'), get_bloginfo('url'), get_bloginfo('name'), get_the_time(__('F, Y'))); ?&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx">                         &lt;?php /* If this is a yearly archive */ } elseif (is_year()) { ?&gt;
</span><del>-                        &lt;p&gt;You are currently browsing the &lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt; blog archives
-                        for the year &lt;?php the_time('Y'); ?&gt;.&lt;/p&gt;
</del><ins>+                        &lt;p&gt;&lt;?php printf(__('You are currently browsing the &lt;a href=&quot;%1$s/&quot;&gt;%2$s&lt;/a&gt; blog archives for the year %3$s.'), get_bloginfo('url'), get_bloginfo('name'), get_the_time('Y')); ?&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx">                         &lt;?php /* If this is a search result */ } elseif (is_search()) { ?&gt;
</span><del>-                        &lt;p&gt;You have searched the &lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt; blog archives
-                        for &lt;strong&gt;'&lt;?php the_search_query(); ?&gt;'&lt;/strong&gt;. If you are unable to find anything in these search results, you can try one of these links.&lt;/p&gt;
</del><ins>+                        &lt;p&gt;&lt;?php printf(__('You have searched the &lt;a href=&quot;%1$s/&quot;&gt;%2$s&lt;/a&gt; blog archives for &lt;strong&gt;&amp;#8216;%3$s&amp;#8217;&lt;/strong&gt;. If you are unable to find anything in these search results, you can try one of these links.'), get_bloginfo('url'), get_bloginfo('name'), wp_specialchars(get_search_query(), true)); ?&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><del>-                        &lt;?php /* If this set is paginated */ } elseif ( !empty($_GET['paged']) ) { ?&gt;
-                        &lt;p&gt;You are currently browsing the &lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt; blog archives.&lt;/p&gt;
</del><ins>+                        &lt;?php /* If this set is paginated */ } elseif (isset($_GET['paged']) &amp;&amp; !empty($_GET['paged'])) { ?&gt;
+                        &lt;p&gt;&lt;?php printf(__('You are currently browsing the &lt;a href=&quot;%1$s/&quot;&gt;%2$s&lt;/a&gt; blog archives.'), get_bloginfo('url'), get_bloginfo('name')); ?&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx">                         &lt;?php } ?&gt;
</span><span class="cx"> 
</span><span class="lines">@@ -56,27 +52,27 @@
</span><span class="cx">                 &lt;?php }?&gt;
</span><span class="cx">                 &lt;/ul&gt;
</span><span class="cx">                 &lt;ul role=&quot;navigation&quot;&gt;
</span><del>-                        &lt;?php wp_list_pages('title_li=&lt;h2&gt;Pages&lt;/h2&gt;' ); ?&gt;
</del><ins>+                        &lt;?php wp_list_pages('title_li=&lt;h2&gt;' . __('Pages') . '&lt;/h2&gt;' ); ?&gt;
</ins><span class="cx"> 
</span><del>-                        &lt;li&gt;&lt;h2&gt;Archives&lt;/h2&gt;
</del><ins>+                        &lt;li&gt;&lt;h2&gt;&lt;?php _e('Archives'); ?&gt;&lt;/h2&gt;
</ins><span class="cx">                                 &lt;ul&gt;
</span><span class="cx">                                 &lt;?php wp_get_archives(array('type' =&gt; 'monthly')); ?&gt;
</span><span class="cx">                                 &lt;/ul&gt;
</span><span class="cx">                         &lt;/li&gt;
</span><span class="cx"> 
</span><del>-                        &lt;?php wp_list_categories(array('show_count' =&gt; 1, 'title_li' =&gt; '&lt;h2&gt;Categories&lt;/h2&gt;')); ?&gt;
</del><ins>+                        &lt;?php wp_list_categories(array('show_count' =&gt; 1, 'title_li' =&gt; '&lt;h2&gt;' . __('Categories') . '&lt;/h2&gt;')); ?&gt;
</ins><span class="cx">                 &lt;/ul&gt;
</span><span class="cx">                 &lt;ul&gt;
</span><span class="cx">                         &lt;?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?&gt;
</span><span class="cx">                                 &lt;?php wp_list_bookmarks(); ?&gt;
</span><span class="cx"> 
</span><del>-                                &lt;li&gt;&lt;h2&gt;Meta&lt;/h2&gt;
</del><ins>+                                &lt;li&gt;&lt;h2&gt;&lt;?php _e('Meta'); ?&gt;&lt;/h2&gt;
</ins><span class="cx">                                 &lt;ul&gt;
</span><span class="cx">                                         &lt;?php wp_register(); ?&gt;
</span><span class="cx">                                         &lt;li&gt;&lt;?php wp_loginout(); ?&gt;&lt;/li&gt;
</span><del>-                                        &lt;li&gt;&lt;a href=&quot;http://validator.w3.org/check/referer&quot; title=&quot;This page validates as XHTML 1.0 Transitional&quot;&gt;Valid &lt;abbr title=&quot;eXtensible HyperText Markup Language&quot;&gt;XHTML&lt;/abbr&gt;&lt;/a&gt;&lt;/li&gt;
-                                        &lt;li&gt;&lt;a href=&quot;http://gmpg.org/xfn/&quot;&gt;&lt;abbr title=&quot;XHTML Friends Network&quot;&gt;XFN&lt;/abbr&gt;&lt;/a&gt;&lt;/li&gt;
-                                        &lt;li&gt;&lt;a href=&quot;http://wordpress.org/&quot; title=&quot;Powered by WordPress, state-of-the-art semantic personal publishing platform.&quot;&gt;WordPress&lt;/a&gt;&lt;/li&gt;
</del><ins>+                                        &lt;li&gt;&lt;a href=&quot;http://validator.w3.org/check/referer&quot; title=&quot;&lt;?php _e('This page validates as XHTML 1.0 Transitional'); ?&gt;&quot;&gt;&lt;?php _e('Valid &lt;abbr title=&quot;eXtensible HyperText Markup Language&quot;&gt;XHTML&lt;/abbr&gt;'); ?&gt;&lt;/a&gt;&lt;/li&gt;
+                                        &lt;li&gt;&lt;a href=&quot;http://gmpg.org/xfn/&quot;&gt;&lt;abbr title=&quot;&lt;?php _e('XHTML Friends Network'); ?&gt;&quot;&gt;&lt;?php _e('XFN'); ?&gt;&lt;/abbr&gt;&lt;/a&gt;&lt;/li&gt;
+                                        &lt;li&gt;&lt;a href=&quot;http://wordpress.org/&quot; title=&quot;&lt;?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?&gt;&quot;&gt;WordPress&lt;/a&gt;&lt;/li&gt;
</ins><span class="cx">                                         &lt;?php wp_meta(); ?&gt;
</span><span class="cx">                                 &lt;/ul&gt;
</span><span class="cx">                                 &lt;/li&gt;
</span></span></pre>
</div>
</div>

</body>
</html>