27 lines
950 B
PHP
Executable File
27 lines
950 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* 模块语言包-文章
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-01T21:51:08+0800
|
|
*/
|
|
return array(
|
|
// 添加/编辑
|
|
'article_add_name' => '文章添加',
|
|
'article_edit_name' => '文章编辑',
|
|
'article_title_text' => '标题',
|
|
'article_jump_url_text' => '跳转url地址',
|
|
'article_content_text' => '内容',
|
|
'article_category_text' => '文章分类',
|
|
'article_title_format' => '标题长度 2~60 个字符',
|
|
'article_jump_url_format' => '跳转url地址格式有误',
|
|
'article_content_format' => '内容长度最少 10~105000 个字符',
|
|
'article_content_format_mobile' => '更多编辑功能请使用电脑访问',
|
|
'article_category_format' => '请选择文章分类',
|
|
'article_article_category_id_error' => '文章分类id不存在',
|
|
'article_so_keyword_tips' => '标题关键字',
|
|
'article_home_recommended_text' => '首页推荐',
|
|
);
|
|
?>
|