Fix language-code typo(?)

http://www.iana.org/assignments/language-subtag-registry/language-subtag-registry
에 따르면, 일본어는 ja로 적어야 합니다. 일본에서 사용하는 일본어를 의미한다면, ja-JP로 적어야 합니다. 어떻게 해도
jp는 표준이 아니기에, 이 커밋을 제안합니다.
This commit is contained in:
MinSoo Kim 2015-05-05 22:30:48 +09:00
parent b0c04a086f
commit 4d48b29dae
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
$js_files=Context::getJsFile();
}
<!DOCTYPE html>
<html lang="{$lang_type}">
<html lang="{str_replace('jp','ja',$lang_type)}">
<head>
<!-- META -->
<meta charset="utf-8">

View file

@ -5,7 +5,7 @@
$js_files=Context::getJsFile();
}
<!DOCTYPE html>
<html lang="{$lang_type}" class="xe-mobilelayout">
<html lang="{str_replace('jp','ja',$lang_type)}" class="xe-mobilelayout">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no" />