通用评论

index.js 685B

12345678910111213141516171819202122
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. // 语言包
  6. // 英文短语和中文提示的对应
  7. var data = {
  8. 'not found': '没有数据',
  9. 'auth failed': '请先登录',
  10. 'create comment failed': '创建评论失败',
  11. 'comment favor failed': '评论点赞失败',
  12. 'delete comment favor failed': '评论取消点赞失败',
  13. 'get comments failed': '获取评论列表失败',
  14. 'create reply failed': '创建回复失败',
  15. 'reply favor failed': '回复点赞失败',
  16. 'delete reply favor failed': '删除回复点赞失败',
  17. 'get replies failed': '获取回复列表失败'
  18. };
  19. exports.default = data;
  20. //# sourceMappingURL=index.js.map