/* * 国际化英文本地配置文件 * ************注意避免重名************* * * --------动态增改部分 * 5. page 页面详情 (表头、表单字段名;各个页面以此页面菜单别名为变量名称) * --------动态增改部分 * --------固定部分 * 4. page-commom 页面通用配置 (增、删、改、查) * 3. menu 菜单栏配置 * 2. navigetor 头部个人信息配置(个人信息菜单) * 1. login 登录页配置 * --------固定部分 */ /** 使用 * * 1. 字符串 {{ $t('selectLang.switchLangMsg')}} * 2. 变量 this.$t('selectLang.switchLangMsg'), * */ import en from './data/enIndex' //引入外部英文翻译文件 export default { common: { add: 'Add', delete: 'Delete', detail: 'Detail', modify: 'Modify', edit: 'Edit', search: 'Search', import: 'Import', export: 'Export', reset: 'Reset', seq: 'seq', operation: 'operation', copy: 'copy', moveUp: 'up', moveDown: 'down', errTip: 'error tip', input: 'Please enter', select: 'Please select', save: 'Save', cancel: 'Cancel', sureDelete: 'Are you sure to delete the selected data?', sureRelease: 'Are you sure to publish?', sureSort: 'Are you sure to save the sort number?', releasd: 'The report has been published!', savesort: 'Save sort', selectcompany: 'Please select a company', year: 'Year', month: 'Month', release: 'release', empty: 'No data', confirm: 'Confirm', tips: 'Tips', saveSuccess: 'Save succeeded', saveFail: 'Save failed', noTemplate: "There is no report template, please contact the administrators!", selectAuthType: 'Please select the authorization type!', noParentId: 'Please select the parent of the new data!' }, menu: {}, navigator: { searchTip: 'Please enter keywords', personalCenter: 'Personal Center', changePsd: 'Change Password', manageSys: 'Management System', signOut: 'Exit The System' }, personal: { name: 'name', account: 'Account', time: 'Registration time', role: 'Role', upload: 'Upload', info: 'Personal Information', contact: 'Contact Information', gender: 'Gender', address: 'Address', phone: 'Mobile phone', mailbox: 'Mailbox' }, resetPSD: { title: 'Change Password', relogin: "Please sign in again", success: 'Password changed successfully', oldPsd: 'Old password', newPsd: 'New password', repeat: 'Repeat new password', check: 'Please check', notSame: 'The new passwords entered two times are inconsistent', length: 'Password length shall be at least 6 digits' }, selectLang: { switchLang: 'Switch Language', switchLangMsg: 'Switch Language Success' }, login: { title: 'Digital Control Platform', welcome2Login: 'welcome to login', login: 'login', reset: 'reset' }, report: { rootNode: 'Report Filling', detailNode: 'Statement Details', downLoad: 'Download template', importTemp: 'There is no filling template, please import first!', importTips: 'Drag the file here, or ', importTipsLoad: 'click Upload', importCoverTips: 'This operation will overwrite the report data. Do you want to continue?', unchanged: 'Report data unchanged', year: "Y", month: "M" }, // 国际科目信息 international: { success: 'Success', failure: 'Failure', save: 'Save', cancel: 'Cancel', tips: 'Please enter ', name: 'Name', nameEn: 'English Name', code: 'Code', type: 'Subject Type', tree: 'International subject', unit: 'Account UOM', level: 'Level', memo: 'Remarks', sortnumber: 'Sort number', move: 'Moving account', }, //国内科目信息 domestic: { success: 'Success', failure: 'Failure', save: 'Save', cancel: 'Cancel', tips: 'Please enter ', correlation: 'Associated international account', name: 'Name', nameEn: 'English Name', code: 'Code', rateType: 'Exchange rate type', type: 'Subject Type', tree: 'Domestic account', unit: 'Account UOM', level: 'Level', memo: 'Remarks', sortnumber: 'Sort number', correlation: 'Correlation', selected: 'selected' }, //运营KPL operationalKPI: { name: 'Applicant', time: 'Date of submission', release: 'Release', unpublish: 'Unpublish', deldata: 'Are you sure about this operation?' }, ...en, // 宏天eip 以下暂不需要 eip: { common: { search: 'search', reset: 'reset', save: '保存', cancel: '取消', up: 'up', down: 'down', remove: 'remove', clear: 'clear', index: 'index', selected: 'selected' }, tree: { filterText: 'keyword filter' }, selectLang: { switchLang: 'switch lang' } } }