From babdb6c85385f151142f20032fa72b353ca810d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Wed, 8 Jul 2015 19:21:53 +0200 Subject: [PATCH] [Backport] Fix Issue #3033: Typo at role points field name in history entries --- app/partials/common/history/history-change-points.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/partials/common/history/history-change-points.jade b/app/partials/common/history/history-change-points.jade index 1f4df3c6..89429a93 100644 --- a/app/partials/common/history/history-change-points.jade +++ b/app/partials/common/history/history-change-points.jade @@ -1,7 +1,7 @@ <% _.each(points, function(point, name) { %> .change-entry .activity-changed - span(translate="ACTIVITY.US_POINTS", translate-values!="<%- name.toLowerCase() %>") + span(translate="ACTIVITY.US_POINTS", translate-values!="{name: '<%- name %>'}") .activity-fromto p strong(translate="COMMON.FROM") @@ -11,4 +11,4 @@ strong(translate="COMMON.TO") br span <%- point[1] %> -<% }); %> \ No newline at end of file +<% }); %>