24 lines
628 B
PHP
Executable File
24 lines
628 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* 模块语言包-友情链接
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-01T21:51:08+0800
|
|
*/
|
|
return array(
|
|
// 公共
|
|
'link_add_name' => '友情链接添加',
|
|
'link_edit_name' => '友情链接编辑',
|
|
|
|
// 自定义导航
|
|
'link_name_text' => '名称',
|
|
'link_name_format' => '名称格式 2~16 个字符',
|
|
'link_describe_text' => '描述',
|
|
'link_describe_format' => '描述不能大于60个字符',
|
|
'link_url_text' => '链接地址',
|
|
'link_url_text_tips' => '带http://',
|
|
'link_url_format' => '链接地址格式有误',
|
|
);
|
|
?>
|