mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 06: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/emoticon/lang/ko.lang.php
Normal file
9
modules/editor/components/emoticon/lang/ko.lang.php
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
/**
|
||||
* @file /modules/editor/components/emoticon/lang/ko.lang.php
|
||||
* @author zero <zero@nzeo.com>
|
||||
* @brief 위지윅에디터(editor) 모듈 > 이모티콘(emoticon) 컴포넌트의 언어팩
|
||||
**/
|
||||
|
||||
$lang->emoticon = "이모티콘";
|
||||
?>
|
||||
|
|
@ -1,9 +1,42 @@
|
|||
#emoticon_area {
|
||||
width:230px;
|
||||
padding:10px 0px 10px 0px;
|
||||
.editor_window {
|
||||
width:300px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
#emoticon_area img {
|
||||
margin:2px;
|
||||
.editor_emoticon {
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
.editor_window img {
|
||||
margin:2px;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.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_button_area {
|
||||
border-top:1px solid #AAAAAA;
|
||||
text-align:center;
|
||||
background-color:#EEEEEE;
|
||||
padding:2px 0px 2px 0px;
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.editor_button {
|
||||
margin-top:4px;
|
||||
background-color:#FFFFFF;
|
||||
border:1px solid #AAAAAA;
|
||||
height:16px;
|
||||
font-size:9pt;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,18 @@
|
|||
<!--%import("popup.js")-->
|
||||
<!--%import("popup.css")-->
|
||||
<!--%import("../lang")-->
|
||||
|
||||
<div id="emoticon_area">
|
||||
<!--@foreach($emoticon_list as $emoticon)-->
|
||||
<img src="images/{$emoticon}" alt="emoticon" onclick="insertEmoticon(this); return false;" style="cursor:pointer;" />
|
||||
<!--@end-->
|
||||
<div class="editor_window">
|
||||
<div class="editor_title">{$lang->emoticon}</div>
|
||||
|
||||
<div class="editor_emoticon">
|
||||
<!--@foreach($emoticon_list as $emoticon)-->
|
||||
<img src="images/{$emoticon}" alt="emoticon" onclick="insertEmoticon(this); return false;" />
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
<div class="editor_button_area">
|
||||
<input type="button" value="{$lang->cmd_insert}" class="editor_button" onclick="insertImage()" />
|
||||
<input type="button" value="{$lang->cmd_close}" class="editor_button" onclick="window.close();" />
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue