From ce5c8e0fcd4401ce5a40a6f4143156e256822fa2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 14 Apr 2011 05:54:22 +0200 Subject: [PATCH] Change title of replies listing on Sone page. --- src/main/resources/i18n/sone.en.properties | 2 +- src/main/resources/templates/viewSone.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/i18n/sone.en.properties b/src/main/resources/i18n/sone.en.properties index 5508908..e726ccb 100644 --- a/src/main/resources/i18n/sone.en.properties +++ b/src/main/resources/i18n/sone.en.properties @@ -134,7 +134,7 @@ Page.ViewSone.PostList.Title=Posts by {sone} Page.ViewSone.PostList.Text.NoPostYet=This Sone has not yet posted anything. Page.ViewSone.Profile.Title=Profile Page.ViewSone.Profile.Label.Name=Name -Page.ViewSone.Replies.Title=Replies to Posts +Page.ViewSone.Replies.Title=Posts {sone} has replied to Page.ViewPost.Title=View Post - Sone Page.ViewPost.Page.Title=View Post by {sone} diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index 066adef..27b156d 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -76,7 +76,7 @@ <%foreach repliedPosts post> <%first> -

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

+

<%= Page.ViewSone.Replies.Title|l10n|html|replace needle="{sone}" replacementKey=sone.niceName>

<%include include/pagination.html pagination=repliedPostPagination pageParameter==repliedPostPage> <%/first> -- 2.7.4