From c6bcfebdedef99db88c3588c1dadd22695caff11 Mon Sep 17 00:00:00 2001 From: zero Date: Wed, 14 Mar 2007 09:02:53 +0000 Subject: [PATCH] git-svn-id: http://xe-core.googlecode.com/svn/trunk@425 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/plugin/conf/module.xml | 2 +- modules/plugin/lang/ko.lang.php | 2 +- modules/plugin/plugin.view.php | 4 ++-- modules/plugin/tpl.admin/downloaded_plugin_list.html | 4 ++-- .../{plugin_make_code.html => plugin_generate_code.html} | 0 5 files changed, 6 insertions(+), 6 deletions(-) rename modules/plugin/tpl.admin/{plugin_make_code.html => plugin_generate_code.html} (100%) diff --git a/modules/plugin/conf/module.xml b/modules/plugin/conf/module.xml index 1268a023a..43172c193 100644 --- a/modules/plugin/conf/module.xml +++ b/modules/plugin/conf/module.xml @@ -3,6 +3,6 @@ - + diff --git a/modules/plugin/lang/ko.lang.php b/modules/plugin/lang/ko.lang.php index 9b9c5160f..3246fa2f6 100644 --- a/modules/plugin/lang/ko.lang.php +++ b/modules/plugin/lang/ko.lang.php @@ -5,7 +5,7 @@ * @brief 플러그인(plugin) 모듈의 기본 언어팩 **/ - $lang->cmd_make_code = '코드생성'; + $lang->cmd_generate_code = '코드생성'; $lang->plugin_maker = '플러그인 제작자'; $lang->plugin_history = '변경사항'; diff --git a/modules/plugin/plugin.view.php b/modules/plugin/plugin.view.php index 79880381d..3420a2e2d 100644 --- a/modules/plugin/plugin.view.php +++ b/modules/plugin/plugin.view.php @@ -45,7 +45,7 @@ /** * @brief 플러그인의 상세 정보(conf/info.xml)를 팝업 출력 **/ - function dispMakeCode() { + function dispGenerateCode() { // 선택된 플러그인 정보를 구함 $oPluginModel = &getModel('plugin'); $plugin_info = $oPluginModel->getPluginInfo(Context::get('selected_plugin')); @@ -60,7 +60,7 @@ $this->setLayoutFile('popup_layout'); // 템플릿 파일 지정 - $this->setTemplateFile('plugin_make_code'); + $this->setTemplateFile('plugin_generate_code'); } } diff --git a/modules/plugin/tpl.admin/downloaded_plugin_list.html b/modules/plugin/tpl.admin/downloaded_plugin_list.html index b8d65fa93..edcf606c6 100644 --- a/modules/plugin/tpl.admin/downloaded_plugin_list.html +++ b/modules/plugin/tpl.admin/downloaded_plugin_list.html @@ -7,7 +7,7 @@ {$lang->author} {$lang->date} {$lang->path} - {$lang->cmd_make_code} + {$lang->cmd_generate_code} {$lang->plugin_info} @@ -20,7 +20,7 @@ {$val->author->name} {$val->author->date} {$val->path} - {$lang->cmd_make_code} + {$lang->cmd_generate_code} {$lang->cmd_view} diff --git a/modules/plugin/tpl.admin/plugin_make_code.html b/modules/plugin/tpl.admin/plugin_generate_code.html similarity index 100% rename from modules/plugin/tpl.admin/plugin_make_code.html rename to modules/plugin/tpl.admin/plugin_generate_code.html