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: 'Document',
code_addr: 'Code',
form_account: 'Please enter your account or email',
form_password: 'Please enter your password',
// header
doc: 'Document',
help: 'Help',
contact: 'About Software',
logout: 'Logout',
// system setting
sys_set: 'System Setting',
lang_set: 'Language Setting',
// right key
r_edit: 'Edit',
r_preview: 'Preview',
r_copy: 'Clone',
r_rename: 'Rename',
r_publish: 'Publish',
r_unpublish: 'Unpublish',
r_download: 'Download',
r_delete: 'Delete',
r_more: 'More',
}
export default {
global,
login,
project,
system,
external,
common,
enum: _enum,
charts,
information,
list,
component,
business
}