From 98251db3c4279308e10cbe52c468dd806f59bb45 Mon Sep 17 00:00:00 2001 From: supershop Date: Sat, 11 Aug 2007 13:05:28 +0000 Subject: [PATCH] =?UTF-8?q?=EC=98=81=EC=96=B4=20-=20=EA=B8=B0=EC=A1=B4=20?= =?UTF-8?q?=EB=B2=88=EC=97=AD=EB=B3=B8=20=EC=88=98=EC=A0=95=20=EB=B0=8F=20?= =?UTF-8?q?=EA=B2=B0=EA=B3=BC=20=EC=B6=9C=EB=A0=A5=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/trunk@2316 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- .../integration_search.view.php | 5 ++++- modules/integration_search/lang/en.lang.php | 16 ++++++++-------- 2 files changed, 12 insertions(+), 9 deletions(-) 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', ); ?>