Replace hardcoded en locale with current locale in lang attributes (#237)

This commit is contained in:
Brian Lowe 2021-04-21 19:53:35 +03:00 committed by GitHub
parent 2be59bbe02
commit 250566446f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@
<#import "lib-home-page.ftl" as lh> <#import "lib-home-page.ftl" as lh>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="${country}">
<head> <head>
<#include "head.ftl"> <#include "head.ftl">
<#if geoFocusMapsEnabled > <#if geoFocusMapsEnabled >

View file

@ -3,7 +3,7 @@
<#import "lib-list.ftl" as l> <#import "lib-list.ftl" as l>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="${country}">
<head> <head>
<#include "head.ftl"> <#include "head.ftl">
</head> </head>

View file

@ -15,7 +15,7 @@
<#import "lib-home-page.ftl" as lh> <#import "lib-home-page.ftl" as lh>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="${country}">
<head> <head>
<#include "head.ftl"> <#include "head.ftl">
<#if geoFocusMapsEnabled > <#if geoFocusMapsEnabled >

View file

@ -3,7 +3,7 @@
<#import "lib-list.ftl" as l> <#import "lib-list.ftl" as l>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="${country}">
<head> <head>
<#include "head.ftl"> <#include "head.ftl">
</head> </head>