From 4c63e5f4c4b0598e3c61bfaa09619923b95a8504 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Fri, 15 Oct 2010 06:38:42 +0200 Subject: [PATCH] =?utf8?q?Add=20=E2=80=9Cthis=20Sone=20follows=E2=80=9D=20?= =?utf8?q?section=20to=20=E2=80=9Cview=20Sone.=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/main/resources/i18n/sone.en.properties | 2 ++ src/main/resources/templates/viewSone.html | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/src/main/resources/i18n/sone.en.properties b/src/main/resources/i18n/sone.en.properties index 9428a76..4cfa70c 100644 --- a/src/main/resources/i18n/sone.en.properties +++ b/src/main/resources/i18n/sone.en.properties @@ -73,6 +73,8 @@ Page.ViewSone.PostList.Title=Posts by “{sone}” 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 diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index ab87a98..db6b2dd 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -31,6 +31,22 @@
<%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html>
<%/foreach> + +

<%= Page.ViewSone.Following.Title|l10n|html>

+ +
+ <%foreach sone.friends friend> + <%first> + + <%/last> + <%foreachelse> +
<%= Page.ViewSone.Following.FollowingNone.Text|l10n|html>
+ <%/foreach> +
<%/if> -- 2.7.4