<!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>[15222] trunk/wp-content/themes/twentyten:
  arrange twentyten strings for easier translation, props zeo, fixes #13824</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15222">15222</a></dd>
<dt>Author</dt> <dd>wpmuguru</dd>
<dt>Date</dt> <dd>2010-06-11 16:15:25 +0000 (Fri, 11 Jun 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>arrange twentyten strings for easier translation, props zeo, fixes <a href="http://trac.wordpress.org/ticket/13824">#13824</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpcontentthemestwentytenfunctionsphp">trunk/wp-content/themes/twentyten/functions.php</a></li>
<li><a href="#trunkwpcontentthemestwentytenloopphp">trunk/wp-content/themes/twentyten/loop.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpcontentthemestwentytenfunctionsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/functions.php (15221 => 15222)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/functions.php        2010-06-11 16:00:29 UTC (rev 15221)
+++ trunk/wp-content/themes/twentyten/functions.php        2010-06-11 16:15:25 UTC (rev 15222)
</span><span class="lines">@@ -493,14 +493,14 @@
</span><span class="cx">  * @since Twenty Ten 1.0
</span><span class="cx">  */
</span><span class="cx"> function twentyten_posted_on() {
</span><del>-        printf( __( '&lt;span %1$s&gt;Posted on&lt;/span&gt; %2$s by %3$s', 'twentyten' ),
-                'class=&quot;meta-prep meta-prep-author&quot;',
-                sprintf( '&lt;a href=&quot;%1$s&quot; title=&quot;%2$s&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;%3$s&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;meta-sep&quot;&gt;',
</del><ins>+        printf( __( '&lt;span class=&quot;%1$s&quot;&gt;Posted on&lt;/span&gt; %2$s &lt;span class=&quot;meta-sep&quot;&gt;by&lt;/span&gt; %3$s', 'twentyten' ),
+                'meta-prep meta-prep-author',
+                sprintf( '&lt;a href=&quot;%1$s&quot; title=&quot;%2$s&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;%3$s&lt;/span&gt;&lt;/a&gt;',
</ins><span class="cx">                         get_permalink(),
</span><span class="cx">                         esc_attr( get_the_time() ),
</span><span class="cx">                         get_the_date()
</span><span class="cx">                 ),
</span><del>-                sprintf( '&lt;/span&gt; &lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;%1$s&quot; title=&quot;%2$s&quot;&gt;%3$s&lt;/a&gt;&lt;/span&gt;',
</del><ins>+                sprintf( '&lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;%1$s&quot; title=&quot;%2$s&quot;&gt;%3$s&lt;/a&gt;&lt;/span&gt;',
</ins><span class="cx">                         get_author_posts_url( get_the_author_meta( 'ID' ) ),
</span><span class="cx">                         sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
</span><span class="cx">                         get_the_author()
</span></span></pre></div>
<a id="trunkwpcontentthemestwentytenloopphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-content/themes/twentyten/loop.php (15221 => 15222)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-content/themes/twentyten/loop.php        2010-06-11 16:00:29 UTC (rev 15221)
+++ trunk/wp-content/themes/twentyten/loop.php        2010-06-11 16:15:25 UTC (rev 15222)
</span><span class="lines">@@ -142,7 +142,7 @@
</span><span class="cx">                         &lt;div class=&quot;entry-utility&quot;&gt;
</span><span class="cx">                                 &lt;?php if ( count( get_the_category() ) ) : ?&gt;
</span><span class="cx">                                         &lt;span class=&quot;cat-links&quot;&gt;
</span><del>-                                                &lt;span class=&quot;entry-utility-prep entry-utility-prep-cat-links&quot;&gt;&lt;?php printf( __('Posted in %s', 'twentyten' ), '&lt;/span&gt; ' . get_the_category_list( ', ' ) ); ?&gt;
</del><ins>+                                                &lt;?php printf( __( '&lt;span class=&quot;%1$s&quot;&gt;Posted in&lt;/span&gt; %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?&gt;
</ins><span class="cx">                                         &lt;/span&gt;
</span><span class="cx">                                         &lt;span class=&quot;meta-sep&quot;&gt;|&lt;/span&gt;
</span><span class="cx">                                 &lt;?php endif; ?&gt;
</span><span class="lines">@@ -151,7 +151,7 @@
</span><span class="cx">                                         if ( $tags_list ):
</span><span class="cx">                                 ?&gt;
</span><span class="cx">                                         &lt;span class=&quot;tag-links&quot;&gt;
</span><del>-                                                &lt;span class=&quot;entry-utility-prep entry-utility-prep-tag-links&quot;&gt;&lt;?php printf( __('Tagged %s', 'twentyten'), '&lt;/span&gt; ' . $tags_list ); ?&gt;
</del><ins>+                                                &lt;?php printf( __( '&lt;span class=&quot;%1$s&quot;&gt;Tagged&lt;/span&gt; %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?&gt;
</ins><span class="cx">                                         &lt;/span&gt;
</span><span class="cx">                                         &lt;span class=&quot;meta-sep&quot;&gt;|&lt;/span&gt;
</span><span class="cx">                                 &lt;?php endif; ?&gt;
</span></span></pre>
</div>
</div>

</body>
</html>