mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 03:09:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@551 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4fe9f7df77
commit
d66fbeef51
16 changed files with 216 additions and 76 deletions
9
modules/editor/components/html_editor/lang/ko.lang.php
Normal file
9
modules/editor/components/html_editor/lang/ko.lang.php
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/html_editor/lang/ko.lang.php
|
||||
* @author zero <zero@nzeo.com>
|
||||
* @brief 위지윅에디터(editor) 모듈 > HTML편집기(html_editor) 컴포넌트의 언어팩
|
||||
**/
|
||||
|
||||
$lang->html_editor = "HTML 편집";
|
||||
?>
|
||||
|
|
@ -4,6 +4,19 @@
|
|||
text-align:center;
|
||||
}
|
||||
|
||||
.editor_title {
|
||||
font-size:10pt;
|
||||
font-weight:bold;
|
||||
clear:both;
|
||||
height:20px;
|
||||
background-color:#555555;
|
||||
color:#EFEFEF;
|
||||
vertical-align:middle;
|
||||
padding-top:5px;
|
||||
border-bottom:1px solid #000000;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.editor_window {
|
||||
padding:4px;
|
||||
}
|
||||
|
|
@ -12,14 +25,20 @@
|
|||
width:385px;
|
||||
height:400px;
|
||||
border:1px solid #888888;
|
||||
clear:both;
|
||||
font-size:9pt;
|
||||
}
|
||||
|
||||
.editor_button {
|
||||
text-align:center;
|
||||
height:16px;
|
||||
font-size:9pt;
|
||||
}
|
||||
|
||||
.editor_button input {
|
||||
margin-top:4px;
|
||||
background-color:#FFFFFF;
|
||||
border:1px solid #AAAAAA;
|
||||
height:16px;
|
||||
font-size:9pt;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
<!--%import("popup.css")-->
|
||||
<!--%import("popup.js")-->
|
||||
|
||||
<div class="editor_area">
|
||||
<!--%import("../lang")-->
|
||||
|
||||
<form action='./' method='post' id='fo' onSubmit="return false" style="display:inline">
|
||||
<div class="editor_area">
|
||||
<div class="editor_title">{$lang->html_editor}</div>
|
||||
<div class="editor_window">
|
||||
<div><textarea name="text" id='editor' class="editor_textarea"></textarea></div>
|
||||
<div class="editor_button">
|
||||
<input type='button' value='{$lang->cmd_insert}' onclick='insertHtml()' />
|
||||
<input type='button' value='{$lang->cmd_close}' onclick='window.close();' />
|
||||
</div>
|
||||
<div><textarea name="text" id='editor' class="editor_textarea"></textarea></div>
|
||||
<div class="editor_button">
|
||||
<input type='button' value='{$lang->cmd_insert}' onclick='insertHtml()' />
|
||||
<input type='button' value='{$lang->cmd_close}' onclick='window.close();' />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue