#18624280 언어팩 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7171 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2010-01-19 11:34:53 +00:00
parent 89fd530ff1
commit 746c19da19
11 changed files with 39 additions and 13 deletions

View file

@ -226,4 +226,7 @@
$lang->edit->close_help = 'Close Help';
$lang->edit->confirm_submit_without_saving = 'There is paragraphs that were not saved.\\nProceed anyway?';
$lang->edit->image_align = '이미지 정렬';
$lang->edit->attached_files = '첨부 파일';
?>

View file

@ -222,4 +222,7 @@
$lang->edit->close_help = '도움말 닫기';
$lang->edit->confirm_submit_without_saving = '저장하지 않은 단락이 있습니다.\\n그냥 전송하시겠습니까?';
$lang->edit->image_align = '이미지 정렬';
$lang->edit->attached_files = '첨부 파일';
?>

View file

@ -226,4 +226,7 @@
$lang->edit->close_help = '도움말 닫기';
$lang->edit->confirm_submit_without_saving = '저장하지 않은 단락이 있습니다.\\n그냥 전송하시겠습니까?';
$lang->edit->image_align = '이미지 정렬';
$lang->edit->attached_files = '첨부 파일';
?>

View file

@ -228,4 +228,7 @@
$lang->edit->close_help = 'ヘルプを閉じる';
$lang->edit->confirm_submit_without_saving = 'まだ保存してない内容があります。\\nそのまま転送して宜しいでしょうか';
$lang->edit->image_align = '이미지 정렬';
$lang->edit->attached_files = '첨부 파일';
?>

View file

@ -228,4 +228,7 @@
$lang->edit->close_help = '도움말 닫기';
$lang->edit->confirm_submit_without_saving = '저장하지 않은 단락이 있습니다.\\n그냥 전송하시겠습니까?';
$lang->edit->image_align = '이미지 정렬';
$lang->edit->attached_files = '첨부 파일';
?>

View file

@ -222,4 +222,7 @@
$lang->edit->close_help = '도움말 닫기';
$lang->edit->confirm_submit_without_saving = '저장하지 않은 단락이 있습니다.\\n그냥 전송하시겠습니까?';
$lang->edit->image_align = '이미지 정렬';
$lang->edit->attached_files = '첨부 파일';
?>

View file

@ -227,5 +227,8 @@
$lang->edit->toc = 'Board của nội dung';
$lang->edit->close_help = '도움말 닫기';
$lang->edit->confirm_submit_without_saving = '저장하지 않은 단락이 있습니다.\\n그냥 전송하시겠습니까?';
$lang->edit->confirm_submit_without_saving = '저장하지 않은 단락이 있습니다.\\n그냥 전송하시겠습니까?';
$lang->edit->image_align = '이미지 정렬';
$lang->edit->attached_files = '첨부 파일';
?>

View file

@ -228,4 +228,7 @@
$lang->edit->close_help = '关闭帮助';
$lang->edit->confirm_submit_without_saving = '尚有未保存的段落。\\n确定要提交吗';
$lang->edit->image_align = '이미지 정렬';
$lang->edit->attached_files = '첨부 파일';
?>

View file

@ -229,4 +229,7 @@
$lang->edit->close_help = '關閉使用手冊';
$lang->edit->confirm_submit_without_saving = '有內容尚未儲存。\\n是否要繼續進行?';
$lang->edit->image_align = '이미지 정렬';
$lang->edit->attached_files = '첨부 파일';
?>

View file

@ -536,21 +536,18 @@ function showEditorHelp(e,editor_sequence){
}
function showEditorExtension(evt,editor_sequence){
var oid = 'editorExtension_'+editor_sequence;
var oid = '#editorExtension_'+editor_sequence;
var e = new xEvent(evt);
if(xGetElementById(oid).className =='extension2'){
xGetElementById(oid).className = 'extension2 open';
if(jQuery(oid).hasClass('extension2')){
jQuery(oid).addClass('open');
if(e.pageX <= xWidth('editor_component_'+editor_sequence)){
xGetElementById('editor_component_'+editor_sequence).style.right='auto';
xGetElementById('editor_component_'+editor_sequence).style.left='0px';
jQuery('#editor_component_'+editor_sequence).css('right','auto').css('left', 0);
}else{
xGetElementById('editor_component_'+editor_sequence).style.right='0px';
xGetElementById('editor_component_'+editor_sequence).style.left='auto';
jQuery('#editor_component_'+editor_sequence).css('right', 0).css('left', 'auto');
}
}else{
xGetElementById(oid).className = 'extension2';
jQuery(oid).attr('class', 'extension2');
}
}
@ -574,4 +571,4 @@ function getAutoSavedSrl(ret_obj, response_tags, c) {
fo_obj[primary_key].value = ret_obj['document_srl'];
if(uploadSettingObj[editor_sequence]) editorUploadInit(uploadSettingObj[editor_sequence], true);
}
}

View file

@ -24,8 +24,10 @@ function editorGetContent(editor_sequence) {
// 에디터에 포커스를 줌
function editorFocus(editor_sequence) {
var iframe_obj = editorGetIFrame(editor_sequence);
iframe_obj.contentWindow.focus();
try {
var iframe_obj = editorGetIFrame(editor_sequence);
iframe_obj.contentWindow.focus();
} catch(e){}
}
/**