mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2912 201d5d3c-b55e-5fd7-737f-ddc643e51545
31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<?php
|
||
/**
|
||
* @file modules/integration_search/lang/ko.lang.php
|
||
* @author zero <zero@nzeo.com> 翻訳:RisaPapa
|
||
* @brief 日本語言語パッケージ(基本的な内容のみう)
|
||
**/
|
||
|
||
$lang->integration_search = "統合検索";
|
||
|
||
$lang->sample_code = "サンプルコード";
|
||
$lang->about_target_module = "選択されたモジュールのみを検索対象とします。権限設定に注意してください。";
|
||
$lang->about_sample_code = "上のコードをレイアウトなどに追加すると統合検索が可能になります。";
|
||
$lang->msg_no_keyword = "検索語を入力してください。";
|
||
|
||
$lang->is_result_text = "<strong>'%s'</strong>に対する検索結果<strong>%d</strong>件";
|
||
|
||
$lang->is_search_option = array(
|
||
'title' => 'タイトル',
|
||
'content' => '内容',
|
||
'title_content' => 'タイトル+内容',
|
||
'comment' => 'コメント',
|
||
'tag' => 'タグ',
|
||
);
|
||
|
||
$lang->is_sort_option = array(
|
||
'regdate' => '登録日',
|
||
'comment_count' => 'コメント数',
|
||
'readed_count' => '照合数',
|
||
'voted_count' => '推薦数',
|
||
);
|
||
?>
|