Skip to content

Commit

Permalink
v 0.4.4 r1
Browse files Browse the repository at this point in the history
에러 메시지 일부 수정
  • Loading branch information
Prev committed Sep 14, 2013
1 parent c3b72b2 commit 37da936
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/classes/ModuleHandler.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ static public function initModule($moduleID, $moduleAction=NULL, $queryParam=NUL

if (!$moduleID) {
Context::printErrorPage(array(
'en' => 'Cannot load module "'.$moduleID.'" - module not defined',
'ko' => '모듈 "'.$moduleID.'"을 불러올 수 없습니다 - 모듈이 정의되지 않음'
'en' => 'Cannot load module - module not defined',
'ko' => '모듈을 불러올 수 없습니다 - 모듈이 정의되지 않음'
));
return;

Expand All @@ -70,7 +70,7 @@ static public function initModule($moduleID, $moduleAction=NULL, $queryParam=NUL
if (!is_file($moduleDir . '/info.json')) {
Context::printErrorPage(array(
'en' => 'Cannot initialize module "'.$moduleID.'" - info.json file not exists',
'ko' => '모듈 "'.$moduleID.'"을 초기화 할 수 없습니다 - info.json 파일이 존재하지 않습니다'
'ko' => '모듈 "'.$moduleID.'"을 초기화 할 수 없습니다 - info.json 파일이 존재하지 않음'
));
return;
}
Expand Down

0 comments on commit 37da936

Please sign in to comment.