article.php 1.1 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * 模块语言包-文章
  4. * @author Devil
  5. * @blog http://gong.gg/
  6. * @version 0.0.1
  7. * @datetime 2016-12-01T21:51:08+0800
  8. */
  9. return array(
  10. // 添加/编辑
  11. 'article_add_name' => '文章添加',
  12. 'article_edit_name' => '文章编辑',
  13. 'article_title_text' => '标题',
  14. 'article_jump_url_text' => '跳转url地址',
  15. 'article_content_text' => '内容',
  16. 'article_class_text' => '文章分类',
  17. 'article_title_format' => '标题长度 3~60 个字符',
  18. 'article_jump_url_format' => '跳转url地址格式有误',
  19. 'article_content_format' => '内容长度最少 50~105000 个字符',
  20. 'article_content_format_mobile' => '更多编辑功能请使用电脑访问',
  21. 'article_class_format' => '请选择文章分类',
  22. 'article_article_class_id_error' => '文章分类id不存在',
  23. 'article_so_keyword_tips' => '标题关键字',
  24. 'article_images_upload_format' => '为了站点自适应结构美观,图片尺寸比例:宽度的%'.MyC('common_image_proportion', 56.23, true).' [计算规则 '.MyC('common_image_proportion', 56.23, true).'除以100再乘以宽度] 得到高度',
  25. );
  26. ?>