【add】我的收藏代码迁移

This commit is contained in:
fengchenchen
2023-08-18 10:47:11 +08:00
parent 9f86c9bbb7
commit b6c91bd17e
18 changed files with 2494 additions and 14 deletions
+9 -1
View File
@@ -1,4 +1,5 @@
const system = require('./system/en.js')
const personalCenter = require('./personalCenter/en.js')
module.exports = {
// 共用
@@ -112,6 +113,11 @@ module.exports = {
confirmRelease: 'Confirm Release?',
confirmWithdraw: 'Confirm to Withdraw?',
doNotHavePermissionDeleteData: 'Do not have permission to delete this data',
noData: 'No Data',
dataLoading: 'Data loading...',
confirmDelete: 'Confirm the listing title you want to delete?',
// 页面头部
header: {
userMenuSearchMenu: 'Search menu',
@@ -429,5 +435,7 @@ module.exports = {
file: 'File'
},
// 系统管理
system
system,
// 个人中心
personalCenter
}
+27
View File
@@ -0,0 +1,27 @@
// 个人中心的所有翻译
module.exports = {
// 我的收藏
collection: {
documentLibrary: 'Document Library',
problemKnowledgeBase: 'Knowledge Sharing',
serialNumber: 'No.',
title: 'Title',
status: 'Status',
collectionTime: 'Collection Time',
Collection: 'Collection',
CancelCollection: 'Cancel Collection',
confirmBulkUnsubscribe: 'Confirm Bulk Unsubscribe?',
unsubscribeConfirm: 'Unsubscribe Confirm?',
// 知识分享
classification: 'Classification',
searchContent: 'Search Content',
forward: 'Forward',
comment: 'Comment',
release: 'Release',
answer: 'Answer',
replyToComments: 'Reply To Comments',
noComment: 'No Comments',
cannotEmpty: 'Cannot Be Empty',
}
}
+32
View File
@@ -0,0 +1,32 @@
// 个人中心的所有翻译
module.exports = {
// 我的收藏
collection: {
documentLibrary: '文档库',
problemKnowledgeBase: '知识分享',
serialNumber: '编号',
title: '标题',
status: '状态',
collectionTime: '收藏时间',
collection: '收藏',
cancelCollection: '取消收藏',
batchCancel: '批量取消收藏',
batchCancelCollection: '确认批量取消收藏?',
confirmCancelCollection: '确认取消收藏?',
confirmBulkUnsubscribe: '确认批量取消订阅?',
unsubscribeConfirm: '确认取消订阅?',
// 知识分享
classification: '分类',
searchContent: '搜索内容',
forward: '转发',
comment: '评论',
release: '发布',
answer: '回复',
replyToComments: '回复评论',
noComment: '暂无评论',
cannotEmpty: '不能为空',
}
}
+7 -1
View File
@@ -1,4 +1,5 @@
const system = require('./system/zh.js')
const personalCenter = require('./personalCenter/zh.js')
module.exports = {
// 共用
@@ -112,6 +113,9 @@ module.exports = {
confirmRelease: '确认发布?',
confirmWithdraw: '确认撤回?',
doNotHavePermissionDeleteData: '没有权限删除此数据',
noData: '暂无数据',
dataLoading: '数据加载中...',
confirmDelete: '确定删除?',
// 页面头部
header: {
userMenuSearchMenu: '搜索菜单',
@@ -429,5 +433,7 @@ module.exports = {
file: '文件'
},
// 系统管理
system
system,
// 个人中心
personalCenter
}