Fix Issue #3033: Typo at role points field name in history entries

stable
David Barragán Merino 2015-07-08 19:21:53 +02:00
parent f43ac475ce
commit 9cc0ea22db
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<% _.each(points, function(point, name) { %> <% _.each(points, function(point, name) { %>
.change-entry .change-entry
.activity-changed .activity-changed
span(translate="ACTIVITY.US_POINTS", translate-values!="<%- name.toLowerCase() %>") span(translate="ACTIVITY.US_POINTS", translate-values!="{name: '<%- name %>'}")
.activity-fromto .activity-fromto
p p
strong(translate="COMMON.FROM") strong(translate="COMMON.FROM")
@ -11,4 +11,4 @@
strong(translate="COMMON.TO") strong(translate="COMMON.TO")
br br
span <%- point[1] %> span <%- point[1] %>
<% }); %> <% }); %>