mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@403 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
62afbadc06
commit
c44a6f07f8
2 changed files with 76 additions and 0 deletions
20
modules/addon/lang/ko.lang.php
Normal file
20
modules/addon/lang/ko.lang.php
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @file ko.lang.php
|
||||||
|
* @author zero (zero@nzeo.com)
|
||||||
|
* @brief 한국어 언어팩
|
||||||
|
**/
|
||||||
|
|
||||||
|
$lang->module_list = "모듈 목록";
|
||||||
|
$lang->module_index = "초기화면";
|
||||||
|
$lang->module_category = "모듈 카테고리";
|
||||||
|
$lang->module_info = "모듈 정보";
|
||||||
|
$lang->add_shortcut = "관리자 메뉴에 추가";
|
||||||
|
|
||||||
|
$lang->module_maker = "모듈 제작자";
|
||||||
|
$lang->module_history = "변경 사항 ";
|
||||||
|
|
||||||
|
$lang->category_title = "카테고리 이름";
|
||||||
|
$lang->cmd_add_shortcut = "바로가기 추가";
|
||||||
|
|
||||||
|
?>
|
||||||
56
modules/addon/tpl.admin/addon_info.html
Normal file
56
modules/addon/tpl.admin/addon_info.html
Normal file
|
|
@ -0,0 +1,56 @@
|
||||||
|
<table border="1" width="400">
|
||||||
|
<col width="100" />
|
||||||
|
<col width="300" />
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">{$lang->module_maker}</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$lang->title}</th>
|
||||||
|
<td>{$module_info->title}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$lang->author}</th>
|
||||||
|
<td><a href="mailto:{$module_info->author->email_address}">{$module_info->author->name}</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$lang->homepage}</th>
|
||||||
|
<td><a href="#" onclick="window.open({$module_info->author->homepage});return false;">{$module_info->author->homepage}</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$lang->regdate}</th>
|
||||||
|
<td>{$module_info->author->date}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$lang->description}</th>
|
||||||
|
<td>{nl2br($module_info->author->description)}</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">{$lang->module_history}</th>
|
||||||
|
</tr>
|
||||||
|
<!--@foreach($module_info->history as $history)-->
|
||||||
|
<!--@if($history->name)-->
|
||||||
|
<tr>
|
||||||
|
<th>{$lang->name}</th>
|
||||||
|
<td><a href="mailto:{$history->email_address}">{$history->name}</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$lang->homepage}</th>
|
||||||
|
<td><a href="#" onclick="window.open({$history->homepage});return false;">{$history->homepage}</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$lang->regdate}</th>
|
||||||
|
<td>{$history->date}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$lang->description}</th>
|
||||||
|
<td>{nl2br($history->description)}</td>
|
||||||
|
</tr>
|
||||||
|
<!--@end-->
|
||||||
|
<!--@end-->
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<a href="#" onclick="self.close()">{$lang->cmd_close}</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue