index.ts 1.06 KB
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
}