git-svn-id: http://xe-core.googlecode.com/svn/trunk@402 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-13 08:51:47 +00:00
parent dee594fb62
commit 62afbadc06
6 changed files with 77 additions and 1 deletions

View file

@ -15,6 +15,14 @@ function isDef() {
return true;
}
// 윈도우 오픈
function winopen(url, target, attribute) {
if(typeof(target)=='undefined') target = '_blank';
if(typeof(attribute)=='undefined') attribute = '';
var win = window.open(url, target, attribute);
win.focus();
}
// 특정 div(or span...)의 display옵션 토글
function toggleDisplay(obj, opt) {
obj = xGetElementById(obj);

View file

@ -10,6 +10,7 @@
$lang->cmd_reply = '답글';
$lang->cmd_delete = '삭제';
$lang->cmd_modify = '수정';
$lang->cmd_view = '보기';
$lang->cmd_list = '목록';
$lang->cmd_prev = '이전';
$lang->cmd_next = '다음';
@ -40,6 +41,7 @@
$lang->cmd_close_all = "모두닫기";
$lang->cmd_open_all = "모두열기";
$lang->cmd_reload = "다시읽기";
$lang->cmd_close = "닫기";
$lang->cmd_remake_cache = "캐시파일 재생성";
$lang->enable = '가능';