From ba3fe5a1abbb66d9e6d7dbf37662bc5cfd979891 Mon Sep 17 00:00:00 2001 From: "Captain.B" Date: Mon, 18 May 2020 15:51:13 +0800 Subject: [PATCH] i18n --- .../common/components/MsTestHeatmap.vue | 33 +++++++++++++++++-- .../home/PerformanceReportRecentList.vue | 2 +- .../performance/home/PerformanceTestHome.vue | 4 ++- .../home/PerformanceTestRecentList.vue | 2 +- frontend/src/i18n/en-US.js | 22 ++++++++++++- frontend/src/i18n/zh-CN.js | 22 ++++++++++++- frontend/src/i18n/zh-TW.js | 22 ++++++++++++- 7 files changed, 98 insertions(+), 9 deletions(-) diff --git a/frontend/src/business/components/common/components/MsTestHeatmap.vue b/frontend/src/business/components/common/components/MsTestHeatmap.vue index b0e184427c..fd5e921786 100644 --- a/frontend/src/business/components/common/components/MsTestHeatmap.vue +++ b/frontend/src/business/components/common/components/MsTestHeatmap.vue @@ -4,7 +4,7 @@ {{$t('commons.calendar_heatmap')}} @@ -16,18 +16,45 @@ data() { return { endDate: new Date(), - colorRange: ['#ebedf0', '#dae2ef', '#c0ddf9', '#73b3f3', '#3886e1', '#17459e'], + unit: 'tests', + colorRange: ['#ebedf0', '#c6e48b', '#7bc96f', '#239a3b', '#196127'], locale: { // 一月 二月 三月 四月 五月 六月 七月 八月 九月 十月 十一月 十二月 months: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], // 星期日 Sun. 星期一 Mon. 星期二 Tues. 星期三 Wed. 星期四 Thur. 星期五 Fri. 星期六 Sat. days: ['Sun', 'Mon', 'Tues', 'Wed', 'Thur', 'Fri', 'Sat'], No: 'No', - on: 'on', + on: ',', less: 'Less', more: 'More' }, } + }, + mounted() { + this.locale.months = [ + this.$t('commons.months_1'), + this.$t('commons.months_2'), + this.$t('commons.months_3'), + this.$t('commons.months_4'), + this.$t('commons.months_5'), + this.$t('commons.months_6'), + this.$t('commons.months_7'), + this.$t('commons.months_8'), + this.$t('commons.months_9'), + this.$t('commons.months_10'), + this.$t('commons.months_11'), + this.$t('commons.months_12') + ]; + this.locale.days = [ + this.$t('commons.weeks_0'), + this.$t('commons.weeks_1'), + this.$t('commons.weeks_2'), + this.$t('commons.weeks_3'), + this.$t('commons.weeks_4'), + this.$t('commons.weeks_5'), + this.$t('commons.weeks_6') + ]; + this.unit = this.$t('commons.test_unit') } } diff --git a/frontend/src/business/components/performance/home/PerformanceReportRecentList.vue b/frontend/src/business/components/performance/home/PerformanceReportRecentList.vue index df0b358f44..8abf39f747 100644 --- a/frontend/src/business/components/performance/home/PerformanceReportRecentList.vue +++ b/frontend/src/business/components/performance/home/PerformanceReportRecentList.vue @@ -50,7 +50,7 @@ }, link(row) { this.$router.push({ - path: '/api/report/view/' + row.id, + path: '/performance/report/view/' + row.id, }) } }, diff --git a/frontend/src/business/components/performance/home/PerformanceTestHome.vue b/frontend/src/business/components/performance/home/PerformanceTestHome.vue index 7f9992d655..c058e1bbea 100644 --- a/frontend/src/business/components/performance/home/PerformanceTestHome.vue +++ b/frontend/src/business/components/performance/home/PerformanceTestHome.vue @@ -10,7 +10,9 @@ - + + + diff --git a/frontend/src/business/components/performance/home/PerformanceTestRecentList.vue b/frontend/src/business/components/performance/home/PerformanceTestRecentList.vue index d0b293943c..08294ac920 100644 --- a/frontend/src/business/components/performance/home/PerformanceTestRecentList.vue +++ b/frontend/src/business/components/performance/home/PerformanceTestRecentList.vue @@ -51,7 +51,7 @@ }, link(row) { this.$router.push({ - path: '/api/test/edit?id=' + row.id, + path: '/performance/test/edit?id=' + row.id, }) } }, diff --git a/frontend/src/i18n/en-US.js b/frontend/src/i18n/en-US.js index a39f571fe7..d8e886c11a 100644 --- a/frontend/src/i18n/en-US.js +++ b/frontend/src/i18n/en-US.js @@ -60,7 +60,27 @@ export default { 'title': 'Title', 'custom': 'Custom', 'select_date': 'Select date', - 'calendar_heatmap': 'Calendar Heatmap' + 'calendar_heatmap': 'Calendar Heatmap', + 'months_1': 'Jan', + 'months_2': 'Feb', + 'months_3': 'Mar', + 'months_4': 'Apr', + 'months_5': 'May', + 'months_6': 'Jun', + 'months_7': 'Jul', + 'months_8': 'Aug', + 'months_9': 'Sep', + 'months_10': 'Oct', + 'months_11': 'Nov', + 'months_12': 'Dec', + 'weeks_0': 'Sun', + 'weeks_1': 'Mon', + 'weeks_2': 'Tues', + 'weeks_3': 'Wed', + 'weeks_4': 'Thur', + 'weeks_5': 'Fri', + 'weeks_6': 'Sat', + 'test_unit': 'tests', }, workspace: { 'create': 'Create Workspace', diff --git a/frontend/src/i18n/zh-CN.js b/frontend/src/i18n/zh-CN.js index 81165aebc1..56396ada49 100644 --- a/frontend/src/i18n/zh-CN.js +++ b/frontend/src/i18n/zh-CN.js @@ -60,7 +60,27 @@ export default { 'title': '标题', 'custom': '自定义', 'select_date': '选择日期', - 'calendar_heatmap': '测试日历' + 'calendar_heatmap': '测试日历', + 'months_1': '一月', + 'months_2': '二月', + 'months_3': '三月', + 'months_4': '四月', + 'months_5': '五月', + 'months_6': '六月', + 'months_7': '七月', + 'months_8': '八月', + 'months_9': '九月', + 'months_10': '十月', + 'months_11': '十一月', + 'months_12': '十二月', + 'weeks_0': '周日', + 'weeks_1': '周一', + 'weeks_2': '周二', + 'weeks_3': '周三', + 'weeks_4': '周四', + 'weeks_5': '周五', + 'weeks_6': '周六', + 'test_unit': '测试', }, workspace: { 'create': '创建工作空间', diff --git a/frontend/src/i18n/zh-TW.js b/frontend/src/i18n/zh-TW.js index 4a8b1aa4ac..40957d7b6a 100644 --- a/frontend/src/i18n/zh-TW.js +++ b/frontend/src/i18n/zh-TW.js @@ -60,7 +60,27 @@ export default { 'title': '標題', 'custom': '自定義', 'select_date': '選擇日期', - 'calendar_heatmap': '測試日曆' + 'calendar_heatmap': '測試日曆', + 'months_1': '一月', + 'months_2': '二月', + 'months_3': '三月', + 'months_4': '四月', + 'months_5': '五月', + 'months_6': '六月', + 'months_7': '七月', + 'months_8': '八月', + 'months_9': '九月', + 'months_10': '十月', + 'months_11': '十一月', + 'months_12': '十二月', + 'weeks_0': '周日', + 'weeks_1': '周一', + 'weeks_2': '周二', + 'weeks_3': '周三', + 'weeks_4': '周四', + 'weeks_5': '周五', + 'weeks_6': '周六', + 'test_unit': '測試', }, workspace: { 'create': '創建工作空間',