mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2943 201d5d3c-b55e-5fd7-737f-ddc643e51545
31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* @file modules/integration_search/lang/ko.lang.php
|
|
* @author zero <zero@nzeo.com>
|
|
* @brief English Language Pack (For only basic things)
|
|
**/
|
|
|
|
$lang->integration_search = "Integrated Search";
|
|
|
|
$lang->sample_code = "Sample Code";
|
|
$lang->about_target_module = "Only chosen modules are the target. Please be careful on setting permissions.";
|
|
$lang->about_sample_code = "You can use integrated search by adding above code on layout or other things.";
|
|
$lang->msg_no_keyword = "Please input keyword to search";
|
|
|
|
$lang->is_result_text = "There are <strong>%d</strong> result(s) for <strong>'%s'</strong>";
|
|
|
|
$lang->is_search_option = array(
|
|
'title' => 'Subject',
|
|
'content' => 'Content',
|
|
'title_content' => 'Subject+Content',
|
|
'comment' => 'Comment',
|
|
'tag' => 'Tags',
|
|
);
|
|
|
|
$lang->is_sort_option = array(
|
|
'regdate' => 'Registered Date',
|
|
'comment_count' => 'Number of Comments',
|
|
'readed_count' => 'Number of Hits',
|
|
'voted_count' => 'Number of Votes',
|
|
);
|
|
?>
|