23 lines
859 B
PHP
Executable File
23 lines
859 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* 模块语言包-筛选价格
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-01T21:51:08+0800
|
|
*/
|
|
return array(
|
|
// 添加/编辑
|
|
'screening_price_add_name' => '筛选价格添加',
|
|
'screening_price_edit_name' => '筛选价格编辑',
|
|
|
|
'screening_price_min_price_text' => '最小价格',
|
|
'screening_price_min_price_format' => '最小价格有误',
|
|
|
|
'screening_price_max_price_text' => '最大价格',
|
|
'screening_price_max_price_format' => '最大价格有误',
|
|
|
|
'screening_price_desc' => '规则举例<br /><span class="mini-tips-text">最小价格0 - 最大价格100 则是小于100<br /> 最小价格1000 - 最大价格0 则是大于1000<br /> 最小价格100 - 最大价格500 则是大于等于100并且小于500</span>',
|
|
);
|
|
?>
|