Browse Source

Use default locale for html lang in layouts (#2212)

closed-social-glitch-2
Matt Jankowski 7 years ago
committed by Eugen
parent
commit
598d3defd5
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      app/views/layouts/application.html.haml
  2. +1
    -1
      app/views/layouts/embedded.html.haml
  3. +1
    -1
      app/views/layouts/error.html.haml

+ 1
- 1
app/views/layouts/application.html.haml View File

@ -1,5 +1,5 @@
!!! 5
%html{:lang => 'en'}
%html{:lang => I18n.locale}
%head
%meta{:charset => 'utf-8'}/
%meta{:name => 'viewport', :content => 'width=device-width, initial-scale=1'}/

+ 1
- 1
app/views/layouts/embedded.html.haml View File

@ -1,5 +1,5 @@
!!! 5
%html{:lang => 'en'}
%html{:lang => I18n.locale}
%head
%meta{:charset => 'utf-8'}/
= stylesheet_link_tag 'application', media: 'all'

+ 1
- 1
app/views/layouts/error.html.haml View File

@ -1,5 +1,5 @@
!!!
%html{:lang => "en"}
%html{:lang => I18n.locale}
%head
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
%meta{:charset => "utf-8"}/

Loading…
Cancel
Save