From b13638803a31d1b8e869536f5d2a5548a243f355 Mon Sep 17 00:00:00 2001 From: joylink_cuiweidong <364937672@qq.com> Date: Wed, 11 Sep 2019 11:32:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=99=E5=AD=A6=20=E4=BB=BF=E7=9C=9F=20?= =?UTF-8?q?=E5=9B=BD=E9=99=85=E5=8C=96=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/i18n/langs/en/display.js | 35 +++++++++++++++++++++++++++++++++++ src/i18n/langs/zh/display.js | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 src/i18n/langs/en/display.js create mode 100644 src/i18n/langs/zh/display.js diff --git a/src/i18n/langs/en/display.js b/src/i18n/langs/en/display.js new file mode 100644 index 000000000..3b14a54a2 --- /dev/null +++ b/src/i18n/langs/en/display.js @@ -0,0 +1,35 @@ +export default { + startBtn: 'Start', + endBtn: 'End', + backBtn: 'Back', + cancelButtonText: 'Cancel', + confirmButtonText: 'Confirm', + prompt: 'Prompt', + seconds: 'seconds', + lesson: { + teachingMode: 'Teaching Mode', + practiceMode: 'Practice Mode', + testMode: 'Test Mode', + score: 'Score: ', + selectTraining: 'Please select training', + endTrainingError: 'Ending training error', + endTrainingTip: 'The operation is not completed, confirm the end?', + startTrainingTip: 'Please start training', + createSimulationError: 'create simulation error' + }, + exam: { + startTestOperateTip: 'Please click to start the exam', + selectTest: 'Please select a question', + endTrainingError: 'Ending training error', + startTestTip: 'Please start the exam first', + endTestTip: 'Do you give up this exam? ', + refreshListError: 'Refresh List Error' + }, + training: { + trainingName: 'Training name: ', + bestTime: 'Best time: ', + maximumTime: 'Maximum time: ', + trainingInstructions: 'Training instructions: ', + getCourseInformationFail: 'Failed to get course information' + } +}; diff --git a/src/i18n/langs/zh/display.js b/src/i18n/langs/zh/display.js new file mode 100644 index 000000000..56bb940a0 --- /dev/null +++ b/src/i18n/langs/zh/display.js @@ -0,0 +1,36 @@ +export default { + startBtn: '开始', + endBtn: '结束', + backBtn: '返回', + cancelButtonText: '取消', + confirmButtonText: '确定', + prompt: '提示', + seconds: '秒', + lesson: { + teachingMode: '教学模式', + practiceMode: '练习模式', + testMode: '测验模式', + score: '得分:', + selectTraining: '请选择实训', + endTrainingError: '结束实训错误', + endTrainingTip: '操作未完成,是否确认结束?', + startTrainingTip: '请先开始实训', + createSimulationError: '创建仿真失败' + }, + exam: { + startTestOperateTip: '请点击开始考试操作', + selectTest: '请选择试题', + endTrainingError: '结束实训错误', + startTestTip: '请先开始考试', + endTestTip: '是否放弃本次考试?', + refreshListError: '刷新列表失败' + }, + training: { + trainingName: '实训名称:', + bestTime: '最佳用时:', + maximumTime: '最大用时:', + trainingInstructions: '实训说明:', + getCourseInformationFail: '获取课程信息失败' + } +}; +