index.ts
1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import login from './login'
import project from './project'
import system from './system'
import external from './external'
import common from './common'
import _enum from './enum'
import charts from './charts/index'
import information from './information/index'
import list from './list/index'
import component from './component/index'
import business from './business'
const global = {
doc_addr: '文档地址',
code_addr: '仓库地址',
form_account: '请输入账号或邮箱',
form_password: '请输入密码',
// 头部
doc: '说明文档',
help: '帮助中心',
contact: '关于软件',
logout: '退出登录',
// 系统设置
sys_set: '系统设置',
lang_set: '语言设置',
// 功能键
r_edit: '编辑',
r_preview: '预览',
r_copy: '克隆',
r_rename: '重命名',
r_publish: '发布',
r_unpublish: '取消发布',
r_download: '下载',
r_delete: '删除',
r_more: '更多',
}
export default {
global,
login,
project,
system,
external,
common,
enum: _enum,
charts,
information,
list,
component,
business
}