묻고답하기
게시판별 언어 설정에 관한 질문 다시 드립니다.
2013.03.21 16:04
모든 게시판은 한글인데 특정 게시판만 다른언어로 설정하고 싶을경우에 대한 질문을 남겼고
송동우님께서 아래와 같은 해결책을 알려주셨습니다.
------------------------------------------------------------------------------------------------------
레이아웃을 열고 최상단에
<!--@ if($mid == "welcome_page" && $lang_type != "en")-->
<script>doChangeLangType('en')</script>
<!--@ else if($mid != "welcome_page" && $lang_type != "ko")-->
<script>doChangeLangType('ko')</script>
<!--@ end-->
*붉은색 글씨는 해당 게시판의 모듈명을 적기.
-----------------------------------------------------------------------------------------------------
알려주신대로 사용하고 있는 레이아웃에 layout.html을 열고
<!--@ if($mid == "withu" && $lang_type != "en")-->
<script>doChangeLangType('en')</script>
<!--@ else if($mid != "with" && $lang_type != "ko")-->
<script>doChangeLangType('ko')</script>
<!--@ end-->
<!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">
<head>
<title>Home</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<load target="style.css" />
<load target="js/login.js" />
</head>
<body>
코드중에
@ 이것 뒤에 빈칸이 있으면 안됩니다....
1.4.x 버전에서는 괜찮지만
그 이후 버전에서는 오류가 납니다...
그래서 빈 칸 없이 붙여야 합니다....
예:
@if
@else
@end