bubble.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  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. 'bubble_mood_placeholder' => '说点什么吧',
  11. 'bubble_mood_format' => '先随便说两句吧......',
  12. 'bubble_mood_error' => '说说内容格式 1~168 个字符之间',
  13. 'bubble_visible_text' => '可见范围:',
  14. 'bubble_visible_error' => '可见范围值有误',
  15. 'bubble_is_sign_hover' => '同步至个人签名',
  16. 'bubble_mood_no_exist_error' => '该说说不存在',
  17. 'bubble_mood_delete_error' => '只能删除自己的说说',
  18. 'bubble_mood_praise_error' => '不能点赞自己的说说',
  19. 'bubble_mood_comments_error' => '不能评论自己的说说',
  20. 'bubble_comments_placeholder' => '评论内容',
  21. 'bubble_comments_format' => '先随便说两句吧......',
  22. 'bubble_comments_content_error' => '评论内容格式 1~255 个字符之间',
  23. 'bubble_comments_mood_id_error' => '说说记录不存在',
  24. 'bubble_comments_reply_id_error' => '评论记录不存在',
  25. 'bubble_comments_parent_id_error' => '父级评论记录不存在',
  26. 'bubble_comments_reply_error' => '不能回复自己的评论',
  27. 'bubble_comments_delete_error' => '只能删除自己的评论',
  28. 'bubble_nav_list' => array(
  29. array('type' => 'all', 'url' => U('Home/Bubble/Index', ['type'=>'all']), 'name' => '冒泡广场'),
  30. array('type' => 'own', 'url' => U('Home/Bubble/Index', ['type'=>'own']),'name' => '本人冒泡'),
  31. ),
  32. );
  33. ?>