add missing translation

This commit is contained in:
Carl Chenet 2018-10-16 16:21:50 +02:00
parent 5849ba4a09
commit 114640e357

View file

@ -118,14 +118,14 @@
<% if lookup_context.template_exists?("footer", "layouts", true) %>
<%= render :partial => "layouts/footer" %>
<% else %>
<a href="/moderations">Moderation Log</a>
<a href="/moderations"><%= t('.moderationloglink') %></a>
<% if @user && !@user.is_new? &&
(iqc = InvitationRequest.verified_count) > 0 %>
<a href="/invitations">Invitation Queue(<%= iqc %>)</a>
<a href="/invitations"><%= t('.invitationqueuelink') %>(<%= iqc %>)</a>
<% end %>
<% if @user && @user.is_moderator? &&
(hrc = HatRequest.count) > 0 %>
<a href="/hats/requests">Hat Requests (<%= hrc %>)</a>
<a href="/hats/requests"><%= t('.hatrequestlink') %>(<%= hrc %>)</a>
<% else %>
<a href="/hats"><%= t('.hatslink') %></a>
<% end %>
@ -140,6 +140,5 @@
<div class="clear"></div>
</div>
</div>
<%= piwik_tracking_tag %>
</body>
</html>