diff --git a/src/i18n/langs/en/display.js b/src/i18n/langs/en/display.js index c18b519d5..0540272b9 100644 --- a/src/i18n/langs/en/display.js +++ b/src/i18n/langs/en/display.js @@ -42,20 +42,19 @@ export default { getCourseInformationFail: 'Failed to get course information' }, demon: { - // 试用时间: - // 派班计划 - // 退出剧本 - // 按计划行车 - // 退出计划 - // 返回 - // 三维视图 - // 任务操作成功! - // 获取时间失败 - // 开始仿真失败,请返回重试 - // 结束仿真失败,请返回 - // 退出任务失败 - // 司机视角 - // 三维视图 + trialTime: 'Trial time: ', + dispatchingPlan: 'Dispatching Plan', + exitScript: 'Exit Script', + drivingByPlan: 'Driving By Plan', + exitPlan: 'Exit Plan', + back: 'Back', + threeDimensionalView: 'Three-Dimensional View', + taskOperateSuccess: 'Task Operate success', + getTimeFail: 'Failed to get time', + startSimulationFail: 'Start simulation failed, please go back and try again', + endSimulationFail: 'End simulation failed, please go back', + exitTaskFail: 'Failed to Exit task', + driverPerspective: 'Driver Perspective' }, systemTime: { timePause: 'Pausing' @@ -63,5 +62,18 @@ export default { screen: { trialTime: 'Trial time: ', getTimeFail: 'Failed to get time' + }, + replay: { + pleaseSelect: 'Please select', + back: 'Back', + pause: 'Pause', + play: 'Play' + }, + plan: { + drivingByPlan: 'Driving By Plan', + exitPlan: 'Exit Plan', + back: 'Back', + startPlanFail: 'Start planning failed, please go back and try again', + endPlanFail: 'End plan failed, please go back' } }; diff --git a/src/i18n/langs/en/global.js b/src/i18n/langs/en/global.js index a5c1b358e..fdbb3113b 100644 --- a/src/i18n/langs/en/global.js +++ b/src/i18n/langs/en/global.js @@ -83,7 +83,40 @@ export default { trainingNotStart: "{name}'s room hasn't started yet", inputRoomNumber: 'Please enter the room number.', chooseRoom: 'Choose Room', - month: 'month', + + month: ' month', + indexA: ' piece', + purchasePrice: 'Total Price: ', + permissionNum: 'Permission Num: ', + submitOrders: 'Submit orders', + completePayment: 'Complete payment', + weChatPay: 'WeChat Pay', + alipayPayment: 'AliPay', + clickRefresh: 'Please click to refresh', + checkstand: 'Checkstand', + permissionType: 'Permission Type: ', + productName: 'Product Name', + simulationPrice: 'Simulation Unit Price', + yuanMonth: 'yuan/month', + permissions: ' permissions', + purchaseDuration: 'Purchase Duration: ', + custom: 'custom', + january: 'One month', + march: 'Three months', + year: 'One year', + twoYears: 'Two years', + fiveYears: 'Five years', + tenYears: 'Ten years', + orderCode: 'Order Code: ', + creationTime: 'Create Time: ', + amountPayable: 'Amounts Payable: ', + + buyProject: 'The products you will purchase are virtual content services. After purchase, you will not be able to return, transfer or exchange. Please confirm.', + relatedServices: 'You can view and use the related services in the “Permissions Details” area after purchase.', + paymentSuccessful: 'Payment successful,click to return', + cancelSuccessfully: 'Cancel success,click to return', + paymentFailed: 'Payment failed,click to return', + putaway: 'Putaway', soldOut: 'Sold out', exportMap: 'Export Map', diff --git a/src/i18n/langs/en/index.js b/src/i18n/langs/en/index.js index dc188aa5c..3838c0bfb 100644 --- a/src/i18n/langs/en/index.js +++ b/src/i18n/langs/en/index.js @@ -42,6 +42,6 @@ export default { demonstration, exam, dashboard, - jlmap3d, - display + jlmap3d, + display }; diff --git a/src/i18n/langs/zh/display.js b/src/i18n/langs/zh/display.js index 953534954..1263a276e 100644 --- a/src/i18n/langs/zh/display.js +++ b/src/i18n/langs/zh/display.js @@ -42,20 +42,19 @@ export default { getCourseInformationFail: '获取课程信息失败' }, demon: { - // 试用时间: - // 派班计划 - // 退出剧本 - // 按计划行车 - // 退出计划 - // 返回 - // 三维视图 - // 任务操作成功! - // 获取时间失败 - // 开始仿真失败,请返回重试 - // 结束仿真失败,请返回 - // 退出任务失败 - // 司机视角 - // 三维视图 + trialTime: '试用时间:', + dispatchingPlan: '派班计划', + exitScript: '退出剧本', + drivingByPlan: '按计划行车', + exitPlan: '退出计划', + back: '返回', + threeDimensionalView: '三维视图', + taskOperateSuccess: '任务操作成功', + getTimeFail: '获取时间失败', + startSimulationFail: '开始仿真失败,请返回重试', + endSimulationFail: '结束仿真失败,请返回', + exitTaskFail: '退出任务失败', + driverPerspective: '司机视角' }, systemTime: { timePause: '暂停中' @@ -63,6 +62,19 @@ export default { screen: { trialTime: '试用时间:', getTimeFail: '获取时间失败' + }, + replay: { + pleaseSelect: '请选择', + back: '返回', + pause: '暂停', + play: '播放' + }, + plan: { + drivingByPlan: '按计划行车', + exitPlan: '退出计划', + back: '返回', + startPlanFail: '开始计划失败,请返回重试', + endPlanFail: '结束计划失败,请返回' } }; diff --git a/src/i18n/langs/zh/index.js b/src/i18n/langs/zh/index.js index b3f12bb67..7254ec156 100644 --- a/src/i18n/langs/zh/index.js +++ b/src/i18n/langs/zh/index.js @@ -42,6 +42,6 @@ export default { demonstration, exam, dashboard, - jlmap3d, - display + jlmap3d, + display }; diff --git a/src/views/display/menuDemon.vue b/src/views/display/menuDemon.vue index a89ff7110..ee1e3b351 100644 --- a/src/views/display/menuDemon.vue +++ b/src/views/display/menuDemon.vue @@ -2,21 +2,21 @@