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