You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
543 B
PHTML
26 lines
543 B
PHTML
8 years ago
|
<?php
|
||
|
|
||
|
$lang['required'] = "%s";
|
||
|
$lang['valid_email'] = "%s";
|
||
|
$lang['max_length'] = "%s";
|
||
|
$lang['numeric'] = "%s";
|
||
|
|
||
|
//产品类型
|
||
|
$lang['product_types'] = array(
|
||
|
'1' => "包价产品",
|
||
|
'2' => "娱乐项目",
|
||
|
'3' => "餐厅",
|
||
|
'4' => "景点",
|
||
|
'5' => "酒店"
|
||
|
);
|
||
|
|
||
|
//产品状态
|
||
|
$lang['product_status'] = array(
|
||
|
'0' => '产品已经提交',
|
||
|
'1' => '产品已经打分',
|
||
|
'2' => '未通过审核',
|
||
|
'3' => '通过审核并开始试用',
|
||
|
'4' => '未通过试用',
|
||
|
'5' => '通过试用并开始推广'
|
||
|
);
|