123456789101112131415161718192021222324252627 |
- <?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_class_text' => '文章分类',
- 'article_title_format' => '标题长度 3~60 个字符',
- 'article_jump_url_format' => '跳转url地址格式有误',
- 'article_content_format' => '内容长度最少 50~105000 个字符',
- 'article_content_format_mobile' => '更多编辑功能请使用电脑访问',
- 'article_class_format' => '请选择文章分类',
- 'article_article_class_id_error' => '文章分类id不存在',
- 'article_so_keyword_tips' => '标题关键字',
- 'article_images_upload_format' => '为了站点自适应结构美观,图片尺寸比例:宽度的%'.MyC('common_image_proportion', 56.23, true).' [计算规则 '.MyC('common_image_proportion', 56.23, true).'除以100再乘以宽度] 得到高度',
- );
- ?>
|