/* * 基础信息 ---- 境外企业信息 中英文翻译文件 * @description: 中英文翻译 * @author: @liulin * @update: @liulin(2023-02-16) * */ const info = { ZH: { //中文翻译 name: '企业名称', code: '企业编码', nameEn: '企业英文名称', liableUser: '负责人', buildDate: '成立时间', city: '城市地区', country: '注册国家', continent: '所在大洲', runStatus: '经营状态', economyType: '是否生产企业', memo: '简介', input: '请输入', select: '请选择', businessType: '经营类型', move: '移动企业', type: '企业类型', }, EN: { //英文翻译 name: 'Name', code: 'Code', nameEn: 'English name', liableUser: 'Person in charge', buildDate: 'Time of establishment', city: 'city', country: 'Registration', continent: 'Continent', runStatus: 'Status', economyType: 'Manufacturer or not', memo: 'Brief introduction', input: 'Please enter ', select: 'Please select ', businessType: 'Business type', move: 'Enterprise move', type: 'Enterprise type', } } export default info //需要暴露出去