Translation fix. Props nbachiyski. fixes #1574
git-svn-id: http://svn.automattic.com/wordpress/trunk@2821 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f59d488483
commit
344982b88c
|
@ -122,7 +122,7 @@ if ( isset($rss->items) && 0 != count($rss->items) ) {
|
|||
$rss->items = array_slice($rss->items, 0, 3);
|
||||
foreach ($rss->items as $item ) {
|
||||
?>
|
||||
<h4><a href='<?php echo wp_filter_kses($item['link']); ?>'><?php echo wp_specialchars($item['title']); ?></a> — <?php echo human_time_diff( strtotime($item['pubdate'], time() ) ); ?> <?php _e('ago'); ?></h4>
|
||||
<h4><a href='<?php echo wp_filter_kses($item['link']); ?>'><?php echo wp_specialchars($item['title']); ?></a> — <?php printf(__('%s ago'), human_time_diff(strtotime($item['pubdate'], time() ) ) ); ?></h4>
|
||||
<p><?php echo $item['description']; ?></p>
|
||||
<?php
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue