12345678910111213141516171819202122 |
- 'use strict';
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- // 语言包
- // 英文短语和中文提示的对应
- var data = {
- 'not found': '没有数据',
- 'auth failed': '请先登录',
- 'create comment failed': '创建评论失败',
- 'comment favor failed': '评论点赞失败',
- 'delete comment favor failed': '评论取消点赞失败',
- 'get comments failed': '获取评论列表失败',
- 'create reply failed': '创建回复失败',
- 'reply favor failed': '回复点赞失败',
- 'delete reply favor failed': '删除回复点赞失败',
- 'get replies failed': '获取回复列表失败'
- };
-
- exports.default = data;
- //# sourceMappingURL=index.js.map
|