app/views/decidim/proposals/proposals/_voting_rules.html.erb in decidim-proposals-0.28.4 vs app/views/decidim/proposals/proposals/_voting_rules.html.erb in decidim-proposals-0.29.0.rc1
- old
+ new
@@ -12,20 +12,20 @@
<% if threshold_per_proposal_enabled? %>
<li><%= t(".threshold_per_proposal.description", limit: threshold_per_proposal) %></li>
<% end %>
- <% if can_accumulate_supports_beyond_threshold? %>
- <li><%= t(".can_accumulate_supports_beyond_threshold.description", limit: threshold_per_proposal) %></li>
+ <% if can_accumulate_votes_beyond_threshold? %>
+ <li><%= t(".can_accumulate_votes_beyond_threshold.description", limit: threshold_per_proposal) %></li>
<% end %>
<% if minimum_votes_per_user_enabled? %>
<li>
<%= t(".minimum_votes_per_user.description", votes: minimum_votes_per_user) %>
<% if votes_given >= minimum_votes_per_user %>
<%= t(".minimum_votes_per_user.given_enough_votes") %>
<% else %>
- <%= t(".minimum_votes_per_user.supports_remaining", remaining_votes: minimum_votes_per_user - votes_given) %>
+ <%= t(".minimum_votes_per_user.votes_remaining", remaining_votes: minimum_votes_per_user - votes_given) %>
<% end %>
</li>
<% end %>
</ul>
<%= render partial: "decidim/proposals/proposals/remaining_votes_count" if current_user_can_vote? %>