通用评论

index.js 571B

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