mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 13:19:56 +09:00
영어 - 기존 번역본 수정 및 결과 출력 페이지 수정
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2316 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2ed83fde65
commit
98251db3c4
2 changed files with 12 additions and 9 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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 = "<strong>'%s'</strong> 에 대한 검색결과 <strong>%d</strong>건";
|
||||
$lang->is_result_text = "There are <strong>%d</strong> result(s) for <strong>'%s'</strong>";
|
||||
|
||||
$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',
|
||||
);
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue