mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
30 lines
999 B
PHP
30 lines
999 B
PHP
<?php
|
||
/**
|
||
* @file modules/integration_search/lang/zh-TW.lang.php
|
||
* @author zero <zero@nzeo.com> 翻譯:royallin
|
||
* @brief 正體中文語言
|
||
**/
|
||
|
||
$lang->integration_search = "搜尋";
|
||
|
||
$lang->sample_code = "原始碼";
|
||
$lang->about_target_module = "只把被選模組作為搜尋對象。請注意權限設置。";
|
||
$lang->about_sample_code = "可把上述原始碼插入到相對應版面當中,即可實現搜尋功能。";
|
||
|
||
$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' => '推薦',
|
||
);
|
||
?>
|