Page.ViewSone.PostList.Text.NoPostYet=This Sone has not yet posted anything.
Page.ViewSone.UnfollowSone.Text=Unfollow this Sone
Page.ViewSone.FollowSone.Text=Follow this Sone
+Page.ViewSone.Following.Title=This Sone follows
+Page.ViewSone.Following.FollowingNone.Text=Apparently, this Sone does not yet follow any other Sone.
Page.FollowSone.Title=Follow Sone - Sone
<div><%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html></div>
<%/foreach>
</div>
+
+ <h1><%= Page.ViewSone.Following.Title|l10n|html></h1>
+
+ <div id="following">
+ <%foreach sone.friends friend>
+ <%first>
+ <ul>
+ <%/first>
+ <li><a href="viewSone.html?sone=<% friend.id>"><% friend.niceName|html></a> (<% friend.requestUri|html>)</li>
+ <%last>
+ </ul>
+ <%/last>
+ <%foreachelse>
+ <div><%= Page.ViewSone.Following.FollowingNone.Text|l10n|html></div>
+ <%/foreach>
+ </div>
<%/if>