From 332e93c9e8b2ef756ac2b2ec1055262046f988fa Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Fri, 30 Mar 2012 20:01:03 -0400 Subject: [PATCH] Merge pull request #10 from jonnybbb/master --- src/com/gitblit/wicket/pages/TagPage.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/com/gitblit/wicket/pages/TagPage.java b/src/com/gitblit/wicket/pages/TagPage.java index acdd77f..b7a5374 100644 --- a/src/com/gitblit/wicket/pages/TagPage.java +++ b/src/com/gitblit/wicket/pages/TagPage.java @@ -51,7 +51,7 @@ // Failed to find tag! if (tagRef == null) { - error(MessageFormat.format("Could not find tag {0}", objectId), true); + error(MessageFormat.format(getString("gb.couldNotFindTag"), objectId), true); } // Display tag. -- Gitblit v1.9.1