comparison app/views/layouts/_alerts.html.erb @ 414:16f1b4f8ce94

Add missing translations.
author nanaya <me@myconan.net>
date Mon, 14 Sep 2015 14:23:15 +0900
parents 62fef621f39c
children 68231013b01b
comparison
equal deleted inserted replaced
413:39d59ae9d9db 414:16f1b4f8ce94
1 <% if notice %> 1 <% if notice %>
2 <div class="alert alert-info"> 2 <div class="alert alert-info">
3 <strong>Info:</strong> 3 <strong><%= t(".info") %>:</strong>
4 <%= notice %> 4 <%= notice %>
5 </div> 5 </div>
6 <% end %> 6 <% end %>
7 7
8 <% if alert %> 8 <% if alert %>
9 <div class="alert alert-danger"> 9 <div class="alert alert-danger">
10 <strong>Error:</strong> 10 <strong><%= t(".error") %>:</strong>
11 <%= alert %> 11 <%= alert %>
12 </div> 12 </div>
13 <% end %> 13 <% end %>