diff --git a/modules/integration_search/integration_search.view.php b/modules/integration_search/integration_search.view.php
index 1046786c6..3f70f97e2 100644
--- a/modules/integration_search/integration_search.view.php
+++ b/modules/integration_search/integration_search.view.php
@@ -93,7 +93,10 @@
}
// 텍스트 생성
- $result_text = sprintf(Context::getLang("is_result_text"), $is_keyword, $output->total_count);
+ if(Context::getLangType()=='en')
+ $result_text = sprintf(Context::getLang("is_result_text"), $output->total_count, $is_keyword);
+ else
+ $result_text = sprintf(Context::getLang("is_result_text"), $is_keyword, $output->total_count);
Context::set('result_text', $result_text);
Context::set('mid_list', $mid_list);
diff --git a/modules/integration_search/lang/en.lang.php b/modules/integration_search/lang/en.lang.php
index 90bc43f01..593e62f07 100644
--- a/modules/integration_search/lang/en.lang.php
+++ b/modules/integration_search/lang/en.lang.php
@@ -12,19 +12,19 @@
$lang->about_sample_code = "You can add integration search on layout by adding code above";
$lang->msg_no_keyword = "Input keyword to search";
- $lang->is_result_text = "'%s' 에 대한 검색결과 %d건";
+ $lang->is_result_text = "There are %d result(s) for '%s'";
$lang->is_search_option = array(
- 'title' => '제목',
- 'content' => '내용',
- 'title_content' => '제목+내용',
+ 'title' => 'Subject',
+ 'content' => 'Content',
+ 'title_content' => 'Subject+Content',
//'comment' => '댓글',
);
$lang->is_sort_option = array(
- 'regdate' => '등록일',
- 'comment_count' => '댓글수',
- 'readed_count' => '조회수',
- 'voted_count' => '추천수',
+ 'regdate' => 'Registered Date',
+ 'comment_count' => 'Number of Comments',
+ 'readed_count' => 'Number of Hits',
+ 'voted_count' => 'Number of Votes',
);
?>