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: '文档地址',
  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
}