35 lines
1021 B
PHP
Executable File
35 lines
1021 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* 模块语言包-成员
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-01T21:51:08+0800
|
|
*/
|
|
return array(
|
|
'user_add_name' => '成员添加',
|
|
'user_edit_name' => '成员编辑',
|
|
'user_so_keyword_tips' => '姓名/手机/邮箱/昵称',
|
|
'user_time_start_text' => '起始时间',
|
|
'user_time_end_text' => '结束时间',
|
|
'user_nickname_name' => '昵称',
|
|
'user_birthday_name' => '生日',
|
|
'user_nickname_format' => '昵称最多 16 个字符',
|
|
|
|
'user_birthday_format' => '生日格式有误',
|
|
'user_accounts_param_error' => '至少填写一项手机或邮箱',
|
|
|
|
'user_login_pwd_name' => '登录密码',
|
|
'user_login_pwd_format' => '登录密码格式 6~18 个字符之间',
|
|
|
|
'user_username_name' => '用户名',
|
|
'user_username_format' => '用户名 2~30 个字符',
|
|
|
|
'user_integral_name' => '积分',
|
|
|
|
'user_avatar_name' => '用户头像',
|
|
'user_province_name' => '所在省',
|
|
'user_city_name' => '所在市',
|
|
);
|
|
?>
|