Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # views/layouts/application.html.erb
  2. <% flash.each do |name, msg| -%>
  3. <%= content_tag :div, msg, class: name %>
  4. <% end -%>
  5.  
  6. # app/controllers/index_controller.rb
  7. def index
  8. flash[:notice] = t("Some notice")
  9. end
  10.  
  11. # config/locales/en.yml
  12. en:
  13. "Some notice": "Some Translated Notice"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement