AUISoft
AUIGantt 3.6 Documentation
AUIGantt 다국어 리소스 작성법에 대하여

AUIGantt 에서 출력되는 모든 메시지 및 리소스는 리소스 파일로 관리합니다. 기본으로 제공되는 언어 팩 파일은 다음 3가지입니다.

l  한국어 : AUIGantt.resources.kr.js

l  영어 : AUIGantt.resources.en.js

l  일본어 : AUIGantt.resources.jp.js

 

적용 방법은 예를 들어 한국어 팩으로 출력하고자 한다면 다음과 같이 스크립트를 설정하십시오.

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="utf-8"/>

<meta http-equiv="Content-Script-Type" content="text/javascript"/>

<meta http-equiv="Content-Style-Type" content="text/css"/>

<meta http-equiv="X-UA-Compatible" content="IE=edge"/>

 

<!-- 간트 차트 CSS 스타일  -->

<link href="./style/AUIGantt_style.css" rel="stylesheet">

 

<!-- AUIGantt 라이센스. -->

<script type="text/javascript" src="./js/AUIGanttLicense.js"></script>

 

<!-- AUIGantt 라이브러리 -->

<script type="text/javascript" src="./js/AUIGantt.js"></script>

 

<!-- AUIGantt 리소스 파일 -->

<script type="text/javascript" src="./js/resources/AUIGantt.resources.kr.js"></script>

 

작성한 스크립트에서 영어 리소스 팩으로 바꾸기를 원한다면 AUIGantt.resources.kr.js 대신 AUIGantt.resources.en.js 으로 바꾸십시오.

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="utf-8"/>

<meta http-equiv="Content-Script-Type" content="text/javascript"/>

<meta http-equiv="Content-Style-Type" content="text/css"/>

<meta http-equiv="X-UA-Compatible" content="IE=edge"/>

 

<!-- 간트 차트 CSS 스타일  -->

<link href="./style/AUIGantt_style.css" rel="stylesheet">

 

<!-- AUIGantt 라이센스. -->

<script type="text/javascript" src="./js/AUIGanttLicense.js"></script>

 

<!-- AUIGantt 라이브러리 -->

<script type="text/javascript" src="./js/AUIGantt.js"></script>

 

<!-- AUIGantt 리소스 파일 – 영어 -->

<script type="text/javascript" src="./js/resources/AUIGantt.resources.en.js"></script>