通用评论

index.js 540B

12345678910111213141516
  1. // 语言包
  2. // 英文短语和中文提示的对应
  3. const data = {
  4. "auth failed": "请先登录",
  5. "create comment failed": "创建评论失败",
  6. "comment favor failed": "评论点赞失败",
  7. "delete comment favor failed": "评论取消点赞失败",
  8. "get comments failed": "获取评论列表失败",
  9. "create reply failed": "创建回复失败",
  10. "reply favor failed": "回复点赞失败",
  11. "delete reply favor failed": "删除回复点赞失败",
  12. "get replies failed": "获取回复列表失败"
  13. };
  14. export default data;