Replace hardcoded en locale with current locale in lang and xml:lang attributes (#228)
This commit is contained in:
parent
3984203552
commit
0b9919c55d
3 changed files with 3 additions and 3 deletions
|
@ -1,3 +1,3 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="${country}" lang="${country}">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<#import "lib-home-page.ftl" as lh>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="${country}">
|
||||
<head>
|
||||
<#include "head.ftl">
|
||||
</head>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<#import "lib-list.ftl" as l>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="${country}">
|
||||
<head>
|
||||
<#include "head.ftl">
|
||||
</head>
|
||||
|
|
Loading…
Add table
Reference in a new issue