summaryrefslogtreecommitdiffstats
path: root/custom/views/default/sidebar.tpl.php
diff options
context:
space:
mode:
Diffstat (limited to 'custom/views/default/sidebar.tpl.php')
-rwxr-xr-x[-rw-r--r--]custom/views/default/sidebar.tpl.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/custom/views/default/sidebar.tpl.php b/custom/views/default/sidebar.tpl.php
index 9e7631c..2a3a360 100644..100755
--- a/custom/views/default/sidebar.tpl.php
+++ b/custom/views/default/sidebar.tpl.php
@@ -4,31 +4,31 @@ usort($all_people, array('PlanetFeed', 'compare'));
?>
<div id="sidebar" class="aside">
<div id="sidebar-people" class="section">
- <h2>People (<?php echo count($all_people); ?>)</h2>
+ <h2><?php echo _g('People') . ' (' . count($all_people) . ')'?></h2>
<ul>
<?php foreach ($all_people as $person) : ?>
<li>
- <a href="<?php echo htmlspecialchars($person->getFeed(), ENT_QUOTES, 'UTF-8'); ?>" title="Feed"><img src="postload.php?url=<?php echo urlencode(htmlspecialchars($person->getFeed(), ENT_QUOTES, 'UTF-8')); ?>" alt="" height="12" width="12" /></a>
- <a href="<?php echo $person->getWebsite(); ?>" title="Website"><?php echo htmlspecialchars($person->getName(), ENT_QUOTES, 'UTF-8'); ?></a>
+ <a href="<?php echo htmlspecialchars($person->getFeed(), ENT_QUOTES, 'UTF-8'); ?>" title="<?=_g('Feed')?>"><img src="postload.php?url=<?php echo urlencode(htmlspecialchars($person->getFeed(), ENT_QUOTES, 'UTF-8')); ?>" alt="" height="12" width="12" /></a>
+ <a href="<?php echo $person->getWebsite(); ?>" title="<?=_g('Website')?>"><?php echo htmlspecialchars($person->getName(), ENT_QUOTES, 'UTF-8'); ?></a>
</li>
<?php endforeach; ?>
</ul>
<p>
- <img src="custom/img/opml.png" alt="feed" height="12" width="12" /> <a href="custom/people.opml">All feeds in OPML format</a>
+ <img src="custom/img/opml.png" alt="<?=_g('Feed')?>" height="12" width="12" /> <a href="custom/people.opml"><?=_g('All feeds in OPML format')?></a>
</p>
</div>
-
+
<div class="section">
- <h2>Syndicate</h2>
+ <h2><?=_g('Syndicate')?></h2>
<ul>
- <li><img src="custom/img/feed.png" alt="feed" height="12" width="12" />&nbsp;<a href="?type=atom10">Feed (ATOM)</a></li>
+ <li><img src="custom/img/feed.png" alt="<?=_g('Feed')?>" height="12" width="12" />&nbsp;<a href="?type=atom10"><?=_g('Feed (ATOM)')?></a></li>
</ul>
</div>
<div class="section">
- <h2>Archives</h2>
+ <h2><?=_g('Archives')?></h2>
<ul>
- <li><a href="?type=archive">See all headlines</a></li>
+ <li><a href="?type=archive"><?=_g('See all headlines')?></a></li>
</ul>
</div>
-</div> \ No newline at end of file
+</div>